8 lines
143 B
Haxe
8 lines
143 B
Haxe
package flash.errors;
|
|
|
|
extern class PermissionError extends Error
|
|
{
|
|
function new(message:String, id:Int):Void;
|
|
function toString():String;
|
|
}
|