forked from IbcAlpha/IBC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ErrorCodes.java
36 lines (30 loc) · 1.64 KB
/
ErrorCodes.java
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
// This file is part of IBC.
// Copyright (C) 2004 Steven M. Kearns ([email protected] )
// Copyright (C) 2004 - 2018 Richard L King ([email protected])
// For conditions of distribution and use, see copyright notice in COPYING.txt
// IBC is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// IBC is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with IBC. If not, see <http://www.gnu.org/licenses/>.
package ibcalpha.ibc;
public final class ErrorCodes {
public static final int UNHANDLED_EXCEPTION = 1100;
public static final int CANT_FIND_CONTROL = 1101;
public static final int INCORRECT_NUMBER_OF_ARGS = 1102;
public static final int INI_FILE_DOES_NOT_EXIST = 1103;
public static final int INVALID_TRADING_MODE = 1104;
public static final int INVALID_SETTING_VALUE = 1105;
public static final int CANT_CREATE_TWS_SETTINGS_DIR = 1106;
public static final int CANT_FIND_ENTRYPOINT = 1107;
public static final int INVALID_JTSINI_PATH = 1108;
public static final int IO_EXCEPTION_ON_JTSINI = 1109;
public static final int INVALID_STATE = 1110;
public static final int SECOND_FACTOR_AUTH_LOGIN_TIMED_OUT = 1111;
public static final int LOGIN_DIALOG_DISPLAY_TIMED_OUT = 1112;
}