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:
Vijayendra Bhamidipati 2012-03-08 11:19:13 -08:00
parent f844ab9a81
commit 96f8111558
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}