Package ghidra.util.exception
Class FileInUseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
ghidra.util.exception.FileInUseException
- All Implemented Interfaces:
Serializable
FileInUseException
indicates that there was contention
for a file which is in-use. This can be caused for various reasons
including a file lock of some kind.- See Also:
-
Constructor Summary
ConstructorDescriptionFileInUseException
(String msg) Create a new FileInUseException with the given message.FileInUseException
(String msg, Throwable cause) Create a new FileInUseException with the given message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FileInUseException
Create a new FileInUseException with the given message.- Parameters:
msg
- the exception message.
-
FileInUseException
Create a new FileInUseException with the given message and cause.- Parameters:
msg
- the exception message.
-