public class SaveVetoException extends SaveException
This exception extends SaveException and provides additional information about how the veto should be handled in the user interface. It defines constants representing different notification modes for the veto message, allowing for flexible and context-specific user feedback.
Modifier and Type | Field and Description |
---|---|
static int |
SHOW_ERROR
Notification mode: Show an error message.
|
static int |
SHOW_MESSAGE
Notification mode: Show a general message.
|
static int |
SHOW_NOTHING
Notification mode: Do not show anything to the user.
|
static int |
SHOW_OVERRIDE_QUESTION
Notification mode: Show an override question to the user.
|
static int |
SHOW_TOAST
Notification mode: Show a toast notification.
|
static int |
SHOW_USER_FRIENDLY_ERROR
Notification mode: Show a more user friendly error message (the default).
|
Constructor and Description |
---|
SaveVetoException(BOI bo,
java.lang.String s)
Constructs a new SaveVetoException with the specified BOI, detail message, and notification mode.
|
SaveVetoException(BOI bo,
java.lang.String s,
int mode) |
SaveVetoException(BOI bo,
java.lang.String s,
java.lang.Throwable cause)
Constructs a new SaveVetoException with the specified BOI, detail message, cause, and notification mode.
|
SaveVetoException(BOI bo,
java.lang.String s,
java.lang.Throwable cause,
int mode) |
SaveVetoException(java.lang.String s)
Constructs a new SaveVetoException with the specified detail message and notification mode.
|
SaveVetoException(java.lang.String s,
int mode) |
SaveVetoException(java.lang.String s,
java.lang.Throwable cause)
Constructs a new SaveVetoException with the specified detail message, cause, and notification mode.
|
SaveVetoException(java.lang.String s,
java.lang.Throwable cause,
int mode) |
Modifier and Type | Method and Description |
---|---|
int |
getNotificationMode() |
boolean |
isShowError()
Checks if the notification mode is set to show an error message.
|
boolean |
isShowMessage()
Checks if the notification mode is set to show a general message.
|
boolean |
isShowNothing()
Checks if the notification mode is set to show nothing.
|
boolean |
isShowOverrideQuestion()
Checks if the notification mode is set to show an override question.
|
boolean |
isShowToast()
Checks if the notification mode is set to show a toast notification.
|
boolean |
isShowUserFriendlyError()
Checks if the notification mode is set to show a more user friendly error message.
|
void |
setNotificationMode(int $1) |
SaveException |
wrap(BOI bo)
Wraps this exception with a new SaveVetoException that includes the specified BOI.
|
getStackTraceAsString, makeFiltered, printStackTrace, printStackTrace, printStackTrace
createFromStackTraceString, dumpJVMStack, dumpJVMStack, dumpStack, dumpStack, dumpStack, filterAndDumpStackTrace, filterStackTrace, filterStackTrace, getAllCauses, getCause, getCauseMethod, getCauseOfClass, getDeepestCauseOfClass, getErrortext, getErrortext, getRootCause, getStackTraceAsString, getStackTraceAsString, getStackTraceAsString, getStackTraceAsString, getStackTraceAsString, getStackTraceAsString, getStackTraceElement, getStackTraceElement, hasCauseOfClass, isKnownWrapperException, ofStackTraceString, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTraceAsCause
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
getCauseOfClass, getDeepestCauseOfClass, getRootCause, getThisAsThrowable, hasCauseOfClass, printStackTrace
public static final int SHOW_USER_FRIENDLY_ERROR
public static final int SHOW_ERROR
public static final int SHOW_OVERRIDE_QUESTION
public static final int SHOW_MESSAGE
public static final int SHOW_TOAST
public static final int SHOW_NOTHING
public SaveVetoException(java.lang.String s)
s
- the detail message.mode
- the notification mode; defaults to SHOW_USER_FRIENDLY_ERROR
.public SaveVetoException(java.lang.String s, int mode)
public SaveVetoException(java.lang.String s, java.lang.Throwable cause)
s
- the detail message.cause
- the cause of the exception.mode
- the notification mode; defaults to SHOW_USER_FRIENDLY_ERROR
.public SaveVetoException(java.lang.String s, java.lang.Throwable cause, int mode)
public SaveVetoException(BOI bo, java.lang.String s)
bo
- the BOI associated with the exception.s
- the detail message.mode
- the notification mode; defaults to SHOW_USER_FRIENDLY_ERROR
.public SaveVetoException(BOI bo, java.lang.String s, int mode)
public SaveVetoException(BOI bo, java.lang.String s, java.lang.Throwable cause)
bo
- the BOI associated with the exception.s
- the detail message.cause
- the cause of the exception.mode
- the notification mode; defaults to SHOW_USER_FRIENDLY_ERROR
.public SaveVetoException(BOI bo, java.lang.String s, java.lang.Throwable cause, int mode)
public SaveException wrap(BOI bo)
wrap
in class SaveException
bo
- the BOI to associate with the new exception.public boolean isShowUserFriendlyError()
true
if the notification mode is SHOW_USER_FRIENDLY_ERROR
, false
otherwise.public boolean isShowError()
true
if the notification mode is SHOW_ERROR
, false
otherwise.public boolean isShowOverrideQuestion()
true
if the notification mode is SHOW_OVERRIDE_QUESTION
, false
otherwise.public boolean isShowMessage()
true
if the notification mode is SHOW_MESSAGE
, false
otherwise.public boolean isShowToast()
true
if the notification mode is SHOW_TOAST
, false
otherwise.public boolean isShowNothing()
true
if the notification mode is SHOW_NOTHING
, false
otherwise.public int getNotificationMode()
public void setNotificationMode(int $1)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.