-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathErrorEnum.as
More file actions
30 lines (25 loc) · 884 Bytes
/
ErrorEnum.as
File metadata and controls
30 lines (25 loc) · 884 Bytes
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
package restService
{
public class ErrorEnum
{
public static const noError:int = 0 ;
public static const SignInFailed:int = 1 ;
public static const MemberIsDisabled:int = 2 ;
public static const UserIsNotAuthorized:int = 3 ;
public static const UserIsNotAuthenticated:int = 4 ;
public static const PasswordIsNotConfirmedCorrectly:int = 5 ;
public static const CurrentPasswordIsWrong:int = 6 ;
public static const RequiredFieldsIsEmpty:int = 7 ;
public static const UsernameIsDuplicated:int = 8 ;
public static const DeviceIsNotAuthenticated:int = 9 ;
public static const EmailIsNotValid:int = 10 ;
public static const MobileIsNotValid:int = 11 ;
public static const ConnectionError:int = -1 ;
public static const JsonParsProblem:int = -2 ;
public static const BinaryError:int = -3 ;
public function ErrorEnum()
{
super();
}
}
}