com.adobe.idp.backup.dsc.service
Class BackupException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.adobe.idp.backup.dsc.service.BackupException
All Implemented Interfaces:
java.io.Serializable

public class BackupException
extends java.lang.Exception
implements java.io.Serializable

Provides exceptions while entering or leaving backup mode on the Adobe Experience Manager forms server for one of the following reasons:

  • One of the parameters is not valid.
  • The label provided is an empty String value.
  • The server cannot enter into the backup mode because of shortage of physical disk space or memory.
  • The save backup mode timeout value provided is not within the range of 0 to 10800 (the number of minutes in one week).

    See Also:
    Serialized Form

    Constructor Summary
    BackupException()
              Default constructor for creating a Backup and Restore exception.
    BackupException(java.lang.String message)
              A constructor to create the Backup and Restore exception, using a message to be displayed.
    BackupException(java.lang.Throwable throwable)
              A constructor to create the Backup and Restore exception with a stack trace.
     
    Method Summary
     java.lang.Throwable getNestedThrowable()
              Returns the cause of the exception generated while entering or leaving backup mode on the Adobe Experience Manager forms server.
     
    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
    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
     

    Constructor Detail

    BackupException

    public BackupException()
    Default constructor for creating a Backup and Restore exception.


    BackupException

    public BackupException(java.lang.String message)
    A constructor to create the Backup and Restore exception, using a message to be displayed.

    Parameters:
    message - The message with the details of the exception to be displayed.

    BackupException

    public BackupException(java.lang.Throwable throwable)
    A constructor to create the Backup and Restore exception with a stack trace.

    Parameters:
    throwable - The exception class used to generate the stack trace based on the cause of the exception. A value of null is permitted.
    Method Detail

    getNestedThrowable

    public java.lang.Throwable getNestedThrowable()
    Returns the cause of the exception generated while entering or leaving backup mode on the Adobe Experience Manager forms server.

    Returns:
    The cause of the exception.