mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-01-17 00:05:07 -05:00
20 lines
340 B
Java
Executable File
20 lines
340 B
Java
Executable File
/*
|
|
Title: internal_script_exception
|
|
Description: exception class to be caught inside our C code
|
|
*/
|
|
|
|
package script;
|
|
|
|
class internal_script_exception extends Exception
|
|
{
|
|
internal_script_exception()
|
|
{
|
|
}
|
|
|
|
internal_script_exception(String message)
|
|
{
|
|
super(message);
|
|
}
|
|
|
|
} // class internal_script_exception
|