Constructs a new LocalizedException with the specified localized message.parammessage the {@link ErrorBundle} that contains the message for the exception super(message.getText(Locale.getDefault())); this.message = message;
super(message.getText(Locale.getDefault())); this.message = message;
Constructs a new LocalizedException with the specified localized message and cause.parammessage the {@link ErrorBundle} that contains the message for the exceptionparamthrowable the cause super(message.getText(Locale.getDefault())); this.message = message; this.cause = throwable;
super(message.getText(Locale.getDefault())); this.message = message; this.cause = throwable;
return cause;
Returns the localized error message of the exception.returnthe localized error message as {@link ErrorBundle} return message;
return message;