mirror of https://github.com/apache/cloudstack.git
Bug 14060: Include a CloudStack error code in an Exception Response
Description: Missed fully qualifying ServerApiException in hashmap. Fixing it with this commit.
This commit is contained in:
parent
f844ab9a81
commit
96f8111558
|
|
@ -99,7 +99,7 @@ public class CSExceptionErrorCode {
|
|||
// Have a special error code for ServerApiException when it is
|
||||
// thrown in a standalone manner when failing to detect any of the above
|
||||
// standard exceptions.
|
||||
ExceptionErrorCodeMap.put("ServerApiException", 9999);
|
||||
ExceptionErrorCodeMap.put("com.cloud.api.ServerApiException", 9999);
|
||||
} catch (Exception e) {
|
||||
throw new ExceptionInInitializerError(e);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue