Navigation
This page has not been translated yet. Showing the default language version.

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