src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/keys/keyresolver/KeyResolverException.java
changeset 50614 3810c9a2efa1
parent 47216 71c04702a3d5
equal deleted inserted replaced
50613:0f93a75b9213 50614:3810c9a2efa1
    37      */
    37      */
    38     public KeyResolverException() {
    38     public KeyResolverException() {
    39         super();
    39         super();
    40     }
    40     }
    41 
    41 
       
    42     public KeyResolverException(Exception ex) {
       
    43         super(ex);
       
    44     }
       
    45 
    42     /**
    46     /**
    43      * Constructor KeyResolverException
    47      * Constructor KeyResolverException
    44      *
    48      *
    45      * @param msgID
    49      * @param msgID
    46      */
    50      */
    59     }
    63     }
    60 
    64 
    61     /**
    65     /**
    62      * Constructor KeyResolverException
    66      * Constructor KeyResolverException
    63      *
    67      *
       
    68      * @param originalException
    64      * @param msgID
    69      * @param msgID
    65      * @param originalException
       
    66      */
    70      */
       
    71     public KeyResolverException(Exception originalException, String msgID) {
       
    72         super(originalException, msgID);
       
    73     }
       
    74 
       
    75     @Deprecated
    67     public KeyResolverException(String msgID, Exception originalException) {
    76     public KeyResolverException(String msgID, Exception originalException) {
    68         super(msgID, originalException);
    77         this(originalException, msgID);
    69     }
    78     }
    70 
    79 
    71     /**
    80     /**
    72      * Constructor KeyResolverException
    81      * Constructor KeyResolverException
    73      *
    82      *
       
    83      * @param originalException
    74      * @param msgID
    84      * @param msgID
    75      * @param exArgs
    85      * @param exArgs
    76      * @param originalException
       
    77      */
    86      */
    78     public KeyResolverException(String msgID, Object exArgs[], Exception originalException) {
    87     public KeyResolverException(Exception originalException, String msgID, Object exArgs[]) {
    79         super(msgID, exArgs, originalException);
    88         super(originalException, msgID, exArgs);
       
    89     }
       
    90 
       
    91     @Deprecated
       
    92     public KeyResolverException(String msgID, Object[] exArgs, Exception originalException) {
       
    93         this(originalException, msgID, exArgs);
    80     }
    94     }
    81 }
    95 }