Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix validation Issues in Admin portal #10339

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,8 @@ public enum ExceptionCodes implements ErrorHandler {
"Cannot add client certificates to this server"),
THROTTLING_POLICY_CANNOT_BE_NULL(900989,
"Throttling Policy cannot be empty or null", 400, "Throttling Policy cannot be empty or null"),
POSITIVE_INTEGER_VALUE(900990, "Contain invalid values. It should be a positive Integer",
400, "Limiting options of %s should be an Integer greater than 1"),

//Throttle related codes
THROTTLE_TEMPLATE_EXCEPTION(900969, "Policy Generating Error", 500, " Error while generate policy configuration"),
Expand Down Expand Up @@ -367,7 +369,6 @@ public enum ExceptionCodes implements ErrorHandler {
EXTERNAL_STORE_ID_NOT_FOUND(901200,"External Store Not Found", 404, "Error while publishing to external stores. " +
"External Store Not Found"),


// Tenant related
INVALID_TENANT(901300,"Tenant Not Found", 400, "Tenant Not Found"),
// Key Manager Related
Expand Down
Loading