Inheritance: JSObject
示例#1
0
        public static string toString(object thisObj)
        {
            SemanticAnalyser.assert_type(thisObj, typeof(ErrorObject));
            ErrorObject error = (ErrorObject)thisObj;

            return(error.message.ToString());
        }
 public static Exception ToException(ErrorObject err){
   return (Exception)err;
 }
 public static Exception ToException(ErrorObject err)
 {
     return((Exception)err);
 }