This topic is not available in your language. Therefore, the original version (ja-jp) is displayed.
VRC0001: Try-Catch-Finally is not supported
| Property | Value |
|---|---|
| ID | VRC0001 |
| Category | Compiler |
| Severity | Error |
| Runtime Version | 3.1.0 ~ latest |
Try-Catch-Finally is not supported
Example
Code with Diagnostic
using UdonSharp;
class TestBehaviour0 : UdonSharpBehaviour
{
public void TestMethod()
{
try {} catch { /* ignored */ }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
}
}Code with Fix
// NOT YET PROVIDED