Project

General

Profile

Statistics
| Branch: | Revision:

colonymech / docs / www / colonyscout / internal / includes / uploadify / com / adobe / protocols / dict / events / ErrorEvent.as @ f59acf11

History | View | Annotate | Download (580 Bytes)

1
package com.adobe.protocols.dict.events
2
{
3
	import flash.events.Event;
4
	import com.adobe.protocols.dict.Dict;
5
	
6
	public class ErrorEvent
7
		extends Event
8
	{
9
		private var _code:uint;
10
		private var _message:String;
11
		
12
		public function ErrorEvent()
13
		{
14
			super(Dict.ERROR);
15
		}
16

    
17
		public function set code(code:uint):void
18
		{
19
			this._code = code;
20
		}
21

    
22
		public function set message(message:String):void
23
		{
24
			this._message = message;
25
		}
26

    
27
		public function get code():uint
28
		{
29
			return this._code;
30
		}
31

    
32
		public function get message():String
33
		{
34
			return this._message;
35
		}
36
	}
37
}