差分発生行の前後
無視リスト:
コミット日時:
2010/01/24 00:11:23 (2 年前)
コミッタ:
rokubou
ログメッセージ:

--

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/FLARException.as

    r1630 r3341  
    2929 */ 
    3030 
    31 package org.libspark.flartoolkit { 
     31package org.libspark.flartoolkit 
     32
     33        import jp.nyatla.nyartoolkit.as3.NyARException; 
    3234 
    33         public class FLARException extends Error { 
    34  
    35 //              private static const serialVersionUID:int = 1; 
    36 // 
    37 //              public function FLARException() 
    38 //              { 
    39 //                      super(); 
    40 //              } 
    41 //       
    42 //              public function FLARException(e:FLARException) { 
    43 //                              super(e); 
    44 //              } 
    45  
    46                 public function FLARException(m:String = '') { 
     35        public class FLARException extends NyARException 
     36        { 
     37                public function FLARException(m:String = '') 
     38                { 
    4739                        super(m); 
    4840                } 
    4941 
    50                 public static function trap(m:String):void { 
     42                public static function trap(m:String):void 
     43                { 
    5144                        throw new FLARException("トラップ:" + m); 
    5245                } 
    5346 
    54                 public static function notImplement():void { 
     47                public static function notImplement():void 
     48                { 
    5549                        throw new FLARException("Not Implement!"); 
    5650                }