Package ghidra.util.exception
Class ClosedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- ghidra.util.exception.ClosedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ClosedException extends java.io.IOException
ClosedException
indicates that the underlying resource has been closed and read/write operations have failed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClosedException()
Default constructor.ClosedException(java.lang.String resourceName)
Constructor which indicates resource which has been closed.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getResourceName()
-
-
-
Constructor Detail
-
ClosedException
public ClosedException()
Default constructor. Message indicates 'File is closed'.
-
ClosedException
public ClosedException(java.lang.String resourceName)
Constructor which indicates resource which has been closed. Message indicates '<resourceName> is closed'.- Parameters:
resourceName
- name of closed resource.
-
-