mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
24 lines
450 B
Java
24 lines
450 B
Java
/**
|
|
* Title: internal_script_exception
|
|
* Description: exception class to be caught inside our C code
|
|
* Copyright: Copyright (c) 2001
|
|
* Company: Sony Online Entertainment
|
|
* @author Steve Jakab
|
|
* @version 1.0
|
|
*/
|
|
|
|
package script;
|
|
|
|
class internal_script_exception extends Exception
|
|
{
|
|
internal_script_exception()
|
|
{
|
|
}
|
|
|
|
internal_script_exception(String message)
|
|
{
|
|
super(message);
|
|
}
|
|
|
|
} // class internal_script_exception
|