com.sdm.quasar.client.core.dialog
Class DialogException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended bycom.sdm.quasar.client.core.dialog.DialogException
All Implemented Interfaces:
java.io.Serializable

public class DialogException
extends java.lang.RuntimeException

Will be thrown when an exception occurs within a dialog while handling that dialog in the dialog frame.

Version:
1.0
Author:
Bernd Olleck, sd&m AG
See Also:
Serialized Form

Constructor Summary
DialogException(DialogInstanceId diid)
          Creates a new DialogException.
DialogException(DialogInstanceId diid, java.lang.String message)
          Creates a new DialogException.
DialogException(DialogInstanceId diid, java.lang.String message, java.lang.Throwable cause)
          Creates a new DialogException.
DialogException(DialogInstanceId diid, java.lang.Throwable cause)
          Creates a new DialogException.
 
Method Summary
 DialogInstanceId getDialogInstanceId()
          Returns the instance id of the dialog concerned.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DialogException

public DialogException(DialogInstanceId diid)
Creates a new DialogException.

Parameters:
diid - the DialogInstanceId of the dialog

DialogException

public DialogException(DialogInstanceId diid,
                       java.lang.String message,
                       java.lang.Throwable cause)
Creates a new DialogException.

Parameters:
diid - the DialogInstanceId of the dialog
message - a error message
cause - an exception that cause this DialogException

DialogException

public DialogException(DialogInstanceId diid,
                       java.lang.String message)
Creates a new DialogException.

Parameters:
diid - the DialogInstanceId of the dialog
message - a error message

DialogException

public DialogException(DialogInstanceId diid,
                       java.lang.Throwable cause)
Creates a new DialogException.

Parameters:
diid - the DialogInstanceId of the dialog
cause - an exception that cause this DialogException
Method Detail

getDialogInstanceId

public DialogInstanceId getDialogInstanceId()
Returns the instance id of the dialog concerned.

Returns:
the instance id of the dialog concerned, may be null.