You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicstaticfinal@NotNullErrorDetailsCONFLICT = newErrorDetails(CommandErrorCodes.CONFLICT_GENERIC, "Conflict", "The request could not be completed due to a conflict with the current state of the target resource");
178
+
publicstaticfinal@NotNullErrorDetailsFORBIDDEN = newErrorDetails(CommandErrorCodes.FORBIDDEN_GENERIC, "Forbidden", "Access to the requested resource is forbidden");
179
+
publicstaticfinal@NotNullErrorDetailsGENERIC_ERROR = newErrorDetails(CommandErrorCodes.GENERIC_ERROR_GENERIC, "Internal server error", "An unexpected error occurred while processing the request");
180
+
publicstaticfinal@NotNullErrorDetailsINVALID_SENDER = newErrorDetails(CommandErrorCodes.INVALID_SENDER_GENERIC, "Invalid sender", "The sender of the command is invalid or not permitted");
181
+
publicstaticfinal@NotNullErrorDetailsNOT_FOUND = newErrorDetails(CommandErrorCodes.NOT_FOUND_GENERIC, "Not found", "The requested resource could not be found");
182
+
publicstaticfinal@NotNullErrorDetailsUNAUTHORIZED = newErrorDetails(CommandErrorCodes.UNAUTHORIZED_GENERIC, "Unauthorized", "Authentication is required and has failed or has not been provided");
183
+
publicstaticfinal@NotNullErrorDetailsUNPROCESSABLE_CONTENT = newErrorDetails(CommandErrorCodes.UNPROCESSABLE_CONTENT_INVALID_INPUT, "Unprocessable content", "The request was well-formed but contained semantic errors");
184
+
publicstaticfinal@NotNullErrorDetailsNOT_IMPLEMENTED = newErrorDetails(CommandErrorCodes.NOT_IMPLEMENTED_NO_COMMAND_EXECUTOR, "Not implemented", "The requested functionality is not implemented");
185
+
176
186
privatestaticfinal@NotNullErrorDetailsEMPTY_INPUT = newErrorDetails(CommandErrorCodes.BAD_REQUEST_EMPTY_INPUT, "The input can not be empty", "The input can not be empty");
0 commit comments