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