Class JsonParseException
The exception that is thrown when parsing json file fails.
Inherited Members
Log::JsonParseException
Namespace: Log
Assembly: FlaxEngine.dll
File: Engine/Debug/Exceptions/JsonParseException.h
Syntax
public class JsonParseException : public Log::Exception
Constructors
JsonParseException(ErrorCode error, size_t offset)
Init
Declaration
public JsonParseException(ErrorCode error, size_t offset)
Parameters
ErrorCode
error
Parsing error code. |
size_t
offset
Parsing error location. |
JsonParseException(ErrorCode error, size_t offset, const StringView& additionalInfo)
Creates default exception with additional data
Declaration
public JsonParseException(ErrorCode error, size_t offset, const StringView& additionalInfo)
Parameters
ErrorCode
error
Parsing error code. |
size_t
offset
Parsing error location. |
StringView
additionalInfo
Additional information that help describe error |