comparison env/lib/python3.9/site-packages/galaxy/exceptions/error_codes.json @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 [
2 {
3 "name": "UNKNOWN",
4 "code": 0,
5 "message": "Unknown error occurred while processing request."
6 },
7 {
8 "name": "USER_CANNOT_RUN_AS",
9 "code": 400001,
10 "message": "User does not have permissions to run jobs as another user."
11 },
12 {
13 "name": "USER_INVALID_RUN_AS",
14 "code": 400002,
15 "message": "Invalid run_as request - run_as user does not exist."
16 },
17 {
18 "name": "USER_INVALID_JSON",
19 "code": 400003,
20 "message": "Your request did not appear to be valid JSON, please consult the API documentation."
21 },
22 {
23 "name": "USER_OBJECT_ATTRIBUTE_INVALID",
24 "code": 400004,
25 "message": "Attempted to create or update object with invalid attribute value."
26 },
27 {
28 "name": "USER_OBJECT_ATTRIBUTE_MISSING",
29 "code": 400005,
30 "message": "Attempted to create or update object without required attribute."
31 },
32 {
33 "name": "USER_SLUG_DUPLICATE",
34 "code": 400006,
35 "message": "Slug must be unique per user."
36 },
37 {
38 "name": "USER_REQUEST_MISSING_PARAMETER",
39 "code": 400007,
40 "message": "Request is missing parameter required to complete desired action."
41 },
42 {
43 "name": "USER_REQUEST_INVALID_PARAMETER",
44 "code": 400008,
45 "message": "Request contained invalid parameter, action could not be completed."
46 },
47 {
48 "name": "MALFORMED_ID",
49 "code": 400009,
50 "message": "The id of the resource is malformed."
51 },
52 {
53 "name": "UNKNOWN_CONTENTS_TYPE",
54 "code": 400010,
55 "message": "The request contains unknown type of contents."
56 },
57 {
58 "name": "USER_IDENTIFIER_DUPLICATE",
59 "code": 400011,
60 "message": "Request contained a duplicated identifier that must be unique."
61 },
62 {
63 "name": "USER_TOOL_META_PARAMETER_PROBLEM",
64 "code": 400012,
65 "message": "Supplied incorrect or incompatible tool meta parameters."
66 },
67 {
68 "name": "MALFORMED_CONTENTS",
69 "code": 400013,
70 "message": "The contents of the request are malformed."
71 },
72 {
73 "name": "USER_TOOL_MISSING_PROBLEM",
74 "code": 400014,
75 "message": "Tool could not be found."
76 },
77 {
78 "name": "TOOL_INPUTS_NOT_READY",
79 "code": 400015,
80 "message": "Tool inputs not yet ready, try again later."
81 },
82 {
83 "name": "USER_AUTHENTICATION_FAILED",
84 "code": 401001,
85 "message": "Authentication failed, invalid credentials supplied."
86 },
87 {
88 "name": "USER_NO_API_KEY",
89 "code": 403001,
90 "message": "Authentication required for this request"
91 },
92 {
93 "name": "USER_CANNOT_ACCESS_ITEM",
94 "code": 403002,
95 "message": "User cannot access specified item."
96 },
97 {
98 "name": "USER_DOES_NOT_OWN_ITEM",
99 "code": 403003,
100 "message": "User does not own specified item."
101 },
102 {
103 "name": "CONFIG_DOES_NOT_ALLOW",
104 "code": 403004,
105 "message": "The configuration of this Galaxy instance does not allow that operation"
106 },
107 {
108 "name": "INSUFFICIENT_PERMISSIONS",
109 "code": 403005,
110 "message": "You don't have proper permissions to perform the requested operation"
111 },
112 {
113 "name": "ADMIN_REQUIRED",
114 "code": 403006,
115 "message": "Action requires admin account."
116 },
117 {
118 "name": "USER_ACTIVATION_REQUIRED",
119 "code": 403007,
120 "message": "Action requires account activation."
121 },
122 {
123 "name": "USER_OBJECT_NOT_FOUND",
124 "code": 404001,
125 "message": "No such object found."
126 },
127 {
128 "name": "DEPRECATED_API_CALL",
129 "code": 404002,
130 "message": "This API method or call signature has been deprecated and is no longer available"
131 },
132 {
133 "name": "CONFLICT",
134 "code": 409001,
135 "message": "Database conflict prevented fulfilling the request."
136 },
137 {
138 "name": "INTERNAL_SERVER_ERROR",
139 "code": 500001,
140 "message": "Internal server error."
141 },
142 {
143 "name": "INCONSISTENT_DATABASE",
144 "code": 500002,
145 "message": "Inconsistent database prevented fulfilling the request."
146 },
147 {
148 "name": "CONFIG_ERROR",
149 "code": 500003,
150 "message": "Error in a configuration file."
151 },
152 {
153 "name": "TOOL_EXECUTION_ERROR",
154 "code": 500004,
155 "message": "Tool execution failed due to an internal server error."
156 },
157 {
158 "name": "INVALID_FILE_FORMAT",
159 "code": 500005,
160 "message": "File format not supported for this operation."
161 },
162 {
163 "name": "NOT_IMPLEMENTED",
164 "code": 501001,
165 "message": "Method is not implemented."
166 }
167 ]