aboutsummaryrefslogtreecommitdiff
path: root/vendors/uploadify/com/adobe/protocols/dict/events/ErrorEvent.as
blob: 9e5fc7ad287db2d6ff2bec7602a5dbdc0e0d3288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.adobe.protocols.dict.events
{
	import flash.events.Event;
	import com.adobe.protocols.dict.Dict;
	
	public class ErrorEvent
		extends Event
	{
		private var _code:uint;
		private var _message:String;
		
		public function ErrorEvent()
		{
			super(Dict.ERROR);
		}

		public function set code(code:uint):void
		{
			this._code = code;
		}

		public function set message(message:String):void
		{
			this._message = message;
		}

		public function get code():uint
		{
			return this._code;
		}

		public function get message():String
		{
			return this._message;
		}
	}
}