src/share/classes/java/security/cert/CRLException.java

Print this page




  40      * Constructs a CRLException with no detail message. A
  41      * detail message is a String that describes this particular
  42      * exception.
  43      */
  44     public CRLException() {
  45         super();
  46     }
  47 
  48     /**
  49      * Constructs a CRLException with the specified detail
  50      * message. A detail message is a String that describes this
  51      * particular exception.
  52      *
  53      * @param message the detail message.
  54      */
  55     public CRLException(String message) {
  56         super(message);
  57     }
  58 
  59     /**
  60      * Creates a <code>CRLException</code> with the specified
  61      * detail message and cause.
  62      *
  63      * @param message the detail message (which is saved for later retrieval
  64      *        by the {@link #getMessage()} method).
  65      * @param cause the cause (which is saved for later retrieval by the
  66      *        {@link #getCause()} method).  (A <tt>null</tt> value is permitted,
  67      *        and indicates that the cause is nonexistent or unknown.)
  68      * @since 1.5
  69      */
  70     public CRLException(String message, Throwable cause) {
  71         super(message, cause);
  72     }
  73 
  74     /**
  75      * Creates a <code>CRLException</code> with the specified cause
  76      * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
  77      * (which typically contains the class and detail message of
  78      * <tt>cause</tt>).
  79      *
  80      * @param cause the cause (which is saved for later retrieval by the
  81      *        {@link #getCause()} method).  (A <tt>null</tt> value is permitted,
  82      *        and indicates that the cause is nonexistent or unknown.)
  83      * @since 1.5
  84      */
  85     public CRLException(Throwable cause) {
  86         super(cause);
  87     }
  88 }


  40      * Constructs a CRLException with no detail message. A
  41      * detail message is a String that describes this particular
  42      * exception.
  43      */
  44     public CRLException() {
  45         super();
  46     }
  47 
  48     /**
  49      * Constructs a CRLException with the specified detail
  50      * message. A detail message is a String that describes this
  51      * particular exception.
  52      *
  53      * @param message the detail message.
  54      */
  55     public CRLException(String message) {
  56         super(message);
  57     }
  58 
  59     /**
  60      * Creates a {@code CRLException} with the specified
  61      * detail message and cause.
  62      *
  63      * @param message the detail message (which is saved for later retrieval
  64      *        by the {@link #getMessage()} method).
  65      * @param cause the cause (which is saved for later retrieval by the
  66      *        {@link #getCause()} method).  (A <tt>null</tt> value is permitted,
  67      *        and indicates that the cause is nonexistent or unknown.)
  68      * @since 1.5
  69      */
  70     public CRLException(String message, Throwable cause) {
  71         super(message, cause);
  72     }
  73 
  74     /**
  75      * Creates a {@code CRLException} with the specified cause
  76      * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
  77      * (which typically contains the class and detail message of
  78      * <tt>cause</tt>).
  79      *
  80      * @param cause the cause (which is saved for later retrieval by the
  81      *        {@link #getCause()} method).  (A <tt>null</tt> value is permitted,
  82      *        and indicates that the cause is nonexistent or unknown.)
  83      * @since 1.5
  84      */
  85     public CRLException(Throwable cause) {
  86         super(cause);
  87     }
  88 }