Simpler deployment.
[redakcja.git] / redakcja / static / filebrowser / uploadify / com / adobe / protocols / dict / events / ErrorEvent.as
1 package com.adobe.protocols.dict.events\r
2 {\r
3         import flash.events.Event;\r
4         import com.adobe.protocols.dict.Dict;\r
5         \r
6         public class ErrorEvent\r
7                 extends Event\r
8         {\r
9                 private var _code:uint;\r
10                 private var _message:String;\r
11                 \r
12                 public function ErrorEvent()\r
13                 {\r
14                         super(Dict.ERROR);\r
15                 }\r
16 \r
17                 public function set code(code:uint):void\r
18                 {\r
19                         this._code = code;\r
20                 }\r
21 \r
22                 public function set message(message:String):void\r
23                 {\r
24                         this._message = message;\r
25                 }\r
26 \r
27                 public function get code():uint\r
28                 {\r
29                         return this._code;\r
30                 }\r
31 \r
32                 public function get message():String\r
33                 {\r
34                         return this._message;\r
35                 }\r
36         }\r
37 }