ModelParsingError

Base class for model parsing errors. Provides user-friendly error messages for different failure scenarios.

Inheritors

Types

Link copied to clipboard
class CorruptedData(details: String, cause: Throwable? = null) : ModelParsingError

File appears to be corrupted.

Link copied to clipboard
class FileNotFound(path: String, cause: Throwable? = null) : ModelParsingError

File not found or inaccessible.

Link copied to clipboard
class InvalidFormat(details: String, cause: Throwable? = null) : ModelParsingError

File format is invalid or not recognized.

Link copied to clipboard
class IoError(details: String, cause: Throwable? = null) : ModelParsingError

I/O error during reading.

Link copied to clipboard
class MemoryError(details: String, cause: Throwable? = null) : ModelParsingError

Memory allocation failed.

Link copied to clipboard
class UnsupportedVersion(details: String, cause: Throwable? = null) : ModelParsingError

Unsupported format version.

Properties

Link copied to clipboard