Initial commit.

This commit is contained in:
Redacted by Stellabellum INC
2013-09-10 23:17:15 -07:00
commit 485a019196
81032 changed files with 7634843 additions and 0 deletions
@@ -0,0 +1,23 @@
/**
* 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