mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-5314: Destroy LiveMemoryHandler
This commit is contained in:
parent
7c74de60e6
commit
bef0660e6a
32 changed files with 667 additions and 783 deletions
|
@ -18,26 +18,33 @@ package ghidra.app.plugin.core.format;
|
|||
import ghidra.util.exception.UsrException;
|
||||
|
||||
/**
|
||||
* <p>An ByteBlockAccessException indicates that the attempted
|
||||
* access is not permitted. (i.e. Readable/Writeable)</p>
|
||||
*
|
||||
* A {@code ByteBlockAccessException} indicates that the attempted access is not permitted. (i.e.
|
||||
* Readable/Writeable)
|
||||
*/
|
||||
public class ByteBlockAccessException extends UsrException {
|
||||
/**
|
||||
* <p>Constructs an ByteBlockAccessException with no detail message.
|
||||
/**
|
||||
* Construct an exception with no details
|
||||
*/
|
||||
public ByteBlockAccessException() {
|
||||
super();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* <p>Constructs an ByteBlockAccessException with the specified
|
||||
* detail message.
|
||||
public ByteBlockAccessException() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct an exception with the specified message
|
||||
*
|
||||
* @param message The message.
|
||||
* @param message the message
|
||||
*/
|
||||
public ByteBlockAccessException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
public ByteBlockAccessException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct an exception with the specified message and cause
|
||||
*
|
||||
* @param message the message
|
||||
* @param cause the cause
|
||||
*/
|
||||
public ByteBlockAccessException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue