EngineException Class
Exception class thrown for all Carmenta Engine runtime errors.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class EngineException : System.Exception
Remarks
EngineException is the exception class in the .NET, C++ and Java APIs that is thrown whenever an error occurs in the Carmenta Engine kernel. The Python API uses the standard "RuntimeError" exception instead.
Errors that occur in the APIs, and not in the kernel, are handled differently in the different APIs:
In C++, this class is also used for errors detected in the API, for instance when the arguments to a method are invalid.
In the .NET API, one of the standard .NET exceptions may be thrown instead of this exception, for instance System.ArgumentException or System.NullPointerException.
In the Java API, one of the standard Java exceptions may be thrown instead of this exception, for instance java.lang.NullPointerException.
Errors in the Python API will throw one of the other standard exceptions, like TypeError.
Inheritance Hierarchy
System.Object (not available in C#)
System.Exception (not available in C#)
EngineException
Platforms
Windows, Linux, Android
EngineException Members
The EngineException type has the following members.
Constructors
Name | Description |
---|---|
EngineException | Missing |
Properties
Name | Description |
---|---|
Message | Gets the error message held by the exception. |