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,29 @@
/**
* Title: internal_script_error
* Description: error 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_error extends Error
{
private Error wrappedError = null;
internal_script_error()
{
}
internal_script_error(String message)
{
super(message);
}
internal_script_error(Error err)
{
wrappedError = err;
}
} // class internal_script_error