- コミット日時:
- 2010/01/24 00:11:23 (2 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/FLARToolKit/trunk/src/org/libspark/flartoolkit/FLARException.as
r1630 r3341 29 29 */ 30 30 31 package org.libspark.flartoolkit { 31 package org.libspark.flartoolkit 32 { 33 import jp.nyatla.nyartoolkit.as3.NyARException; 32 34 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 { 47 39 super(m); 48 40 } 49 41 50 public static function trap(m:String):void { 42 public static function trap(m:String):void 43 { 51 44 throw new FLARException("トラップ:" + m); 52 45 } 53 46 54 public static function notImplement():void { 47 public static function notImplement():void 48 { 55 49 throw new FLARException("Not Implement!"); 56 50 }

