ElfFileException
expect open class ElfFileException constructor(message: String, cause: Throwable? = null) : CommonFileException(source)
Represents an exception occurring during ELF file processing.
Parameters
message
the detailed message describing the error
cause
the underlying reason for the exception
actual open class ElfFileException @JvmOverloads constructor(message: String, val cause: Throwable?) : CommonFileException(source)
JVM implementation of ElfFileException.
Parameters
message
the detailed message describing the error
cause
the underlying reason for the exception
actual open class ElfFileException constructor(message: String, val cause: Throwable?) : CommonFileException(source)
Non-JVM implementation of ElfFileException.
Parameters
message
the detailed message describing the error
cause
the underlying reason for the exception