Package ghidra.framework
Class OSFileNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.io.FileNotFoundException
ghidra.framework.OSFileNotFoundException
- All Implemented Interfaces:
Serializable
Signals that an attempt to find a Ghidra "OS-file" (native binary) has failed.
This exception provides a consistent way to display information about the missing OS-file that will aid in error reporting and debugging.
- See Also:
-
Constructor Summary
ConstructorDescriptionOSFileNotFoundException
(Platform platform, String fileName) Creates a newOSFileNotFoundException
with an unknown moduleOSFileNotFoundException
(Platform platform, String moduleName, String fileName) Creates a newOSFileNotFoundException
OSFileNotFoundException
(String fileName) Creates a newOSFileNotFoundException
for the currentPlatform
with an unknown moduleOSFileNotFoundException
(String moduleName, String fileName) Creates a newOSFileNotFoundException
for the currentPlatform
-
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OSFileNotFoundException
Creates a newOSFileNotFoundException
- Parameters:
platform
- ThePlatform
associated with this exceptionmoduleName
- The module name associated with this exceptionfileName
- The file name associated with this exception, from the given module
-
OSFileNotFoundException
Creates a newOSFileNotFoundException
with an unknown module- Parameters:
platform
- ThePlatform
associated with this exceptionfileName
- The file name associated with this exception, from an unknown module
-
OSFileNotFoundException
Creates a newOSFileNotFoundException
for the currentPlatform
- Parameters:
moduleName
- The module name associated with this exceptionfileName
- The file name associated with this exception, from the given module
-
OSFileNotFoundException
Creates a newOSFileNotFoundException
for the currentPlatform
with an unknown module- Parameters:
fileName
- The file name associated with this exception, from an unknown module
-
-
Method Details