view bindings/as3/ext/asunit/errors/InstanceNotFoundError.as @ 732:3a0b9700b3d2

* Initial AS3 commit
author mas01mj
date Tue, 14 Sep 2010 16:47:10 +0000
parents
children
line wrap: on
line source
package asunit.errors {
    
    public class InstanceNotFoundError extends Error {
        
        public function InstanceNotFoundError(message:String) {
            super(message);
            name = "InstanceNotFoundError";
        }
    }
}