org.scaladebugger.api.lowlevel.exceptions
Retrieves the list of exception requests contained by this manager.
Retrieves the list of exception requests contained by this manager.
The collection of exception request information
Retrieves the list of exception requests contained by this manager.
Retrieves the list of exception requests contained by this manager.
The collection of exception requests by id
Retrieves the collection of exception requests with the matching exception class name.
Retrieves the collection of exception requests with the matching exception class name.
The full class name of the exception targeted by the exception requests
Some collection of exception requests if they exist, otherwise None
Returns the information for an exception request with the specified id.
Returns the information for an exception request with the specified id.
The id of the request
Some exception information if found, otherwise None
Retrieves the collection of exception requests with the specified id.
Retrieves the collection of exception requests with the specified id.
The id of the request used to retrieve and delete it
Some collection of exception requests if they exist, otherwise None
Determines if an exception request exists for the specified exception class name.
Determines if an exception request exists for the specified exception class name.
The full class name of the exception targeted by the exception requests
True if a exception request exists, otherwise false
Determines if an exception request exists with the specified id.
Determines if an exception request exists with the specified id.
The id of the request used to retrieve and delete it
True if a exception request exists, otherwise false
Creates a new exception request to catch all exceptions from the JVM.
Creates a new exception request to catch all exceptions from the JVM.
If true, events will be reported when any exception is detected within a try { ... } block
If true, events will be reported when any exception is detected not within a try { ... } block
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
The request id given does not get added to the request id list and removing by id will not remove this request instance.
Creates a new exception request to catch all exceptions from the JVM.
Creates a new exception request to catch all exceptions from the JVM.
The id associated with the requests for lookup and removal
If true, events will be reported when any exception is detected within a try { ... } block
If true, events will be reported when any exception is detected not within a try { ... } block
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
The request id given does not get added to the request id list and removing by id will not remove this request instance.
Creates a new exception request for the specified exception class.
Creates a new exception request for the specified exception class.
The full class name of the exception to watch
If true, events will be reported when the exception is detected within a try { ... } block
If true, events will be reported when the exception is detected not within a try { ... } block
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Any exception and its subclass will be watched.
Creates a new exception request based on the specified information.
Creates a new exception request based on the specified information. If the class name is null, will create a catchall exception request.
The information used to create the exception request
Success(id) if successful, otherwise Failure
Creates a new exception request for the specified exception class.
Creates a new exception request for the specified exception class.
The id associated with the requests for lookup and removal
The full class name of the exception to watch
If true, events will be reported when the exception is detected within a try { ... } block
If true, events will be reported when the exception is detected not within a try { ... } block
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
Any exception and its subclass will be watched.
Disables pending support.
Disables pending support.
Enables pending support.
Enables pending support.
Indicates whether or not pending support is enabled.
Indicates whether or not pending support is enabled.
True if pending support enabled, otherwise false
Generates an id for a new request.
Generates an id for a new request.
The id as a string
Represents the manager used to store pending exception requests and process them later.
Represents the manager used to store pending exception requests and process them later.
Retrieves a list of all pending exception requests.
Retrieves a list of all pending exception requests.
The collection of exception request information
Retrieves a list of pending exception requests for the specified file.
Retrieves a list of pending exception requests for the specified file.
The full name of the exception class whose pending exception requests to retrieve
The collection of successfully-processed exception requests
Processes all pending exception requests.
Processes all pending exception requests.
The collection of successfully-processed exception requests
Processes all pending exception requests for the specified file.
Processes all pending exception requests for the specified file.
The full name of the exception class whose pending exception requests to process
The collection of successfully-processed exception requests
Removes the specified exception requests with the matching exception class name.
Removes the specified exception requests with the matching exception class name.
The full class name of the exception targeted by the exception requests
True if the exception requests were removed (if they existed), otherwise false
Removes the exception request with the specified id.
Removes the exception request with the specified id.
The id of the request
True if the exception request was removed (if it existed), otherwise false
Sets enablement of pending support to the specified value.
Sets enablement of pending support to the specified value.
True if enabling support, otherwise false
Provides pending exception capabilities to an existing exception manager.
Contains an internal pending action manager.