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:
- java.io.Serializable
 
 public class FileInUseException extends java.io.IOExceptionFileInUseExceptionindicates 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:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description FileInUseException(java.lang.String msg)Create a new FileInUseException with the given message.FileInUseException(java.lang.String msg, java.lang.Throwable cause)Create a new FileInUseException with the given message and cause.
 
- 
- 
- 
Constructor Detail- 
FileInUseExceptionpublic FileInUseException(java.lang.String msg) Create a new FileInUseException with the given message.- Parameters:
- msg- the exception message.
 
 - 
FileInUseExceptionpublic FileInUseException(java.lang.String msg, java.lang.Throwable cause)Create a new FileInUseException with the given message and cause.- Parameters:
- msg- the exception message.
 
 
- 
 
-