Sha256: 52aa73b17128966c17b1c6a5cac4ef9af867f729e90a5b220c623d3320302e5b

Contents?: true

Size: 434 Bytes

Versions: 3

Compression:

Stored size: 434 Bytes

Contents

package asunit.framework {

	import flash.events.Event;

	public class ErrorEvent extends Event {
		public static const ERROR:String = 'error';
		protected var _error:Error;
		
		public function ErrorEvent(type:String, error:Error) {
			super(type);
			this._error = error;
		}
		
		override public function clone():Event {
			return new ErrorEvent(type, _error);
		}
		
		public function get error():Error { return _error; }
	}
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
asunit4-4.2.3.pre src/asunit/framework/ErrorEvent.as
asunit4-4.2.2.pre src/asunit/framework/ErrorEvent.as
asunit4-4.2.1.pre src/asunit/framework/ErrorEvent.as