0N/A/*
553N/A * reserved comment block
0N/A * DO NOT REMOVE OR ALTER!
0N/A */
0N/A/*
0N/A * Copyright 1999-2004 The Apache Software Foundation.
0N/A *
0N/A * Licensed under the Apache License, Version 2.0 (the "License");
0N/A * you may not use this file except in compliance with the License.
0N/A * You may obtain a copy of the License at
0N/A *
0N/A * http://www.apache.org/licenses/LICENSE-2.0
0N/A *
0N/A * Unless required by applicable law or agreed to in writing, software
0N/A * distributed under the License is distributed on an "AS IS" BASIS,
0N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0N/A * See the License for the specific language governing permissions and
0N/A * limitations under the License.
553N/A *
553N/A */
553N/Apackage com.sun.org.apache.xml.internal.security.keys.storage;
0N/A
0N/A
0N/A
0N/Aimport com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException;
0N/A
0N/A
0N/A/**
0N/A *
288N/A * @author $Author: mullan $
0N/A */
0N/Apublic class StorageResolverException extends XMLSecurityException {
0N/A
0N/A /**
0N/A *
0N/A */
0N/A private static final long serialVersionUID = 1L;
0N/A
0N/A /**
* Constructor StorageResolverException
*
*/
public StorageResolverException() {
super();
}
/**
* Constructor StorageResolverException
*
* @param _msgID
*/
public StorageResolverException(String _msgID) {
super(_msgID);
}
/**
* Constructor StorageResolverException
*
* @param _msgID
* @param exArgs
*/
public StorageResolverException(String _msgID, Object exArgs[]) {
super(_msgID, exArgs);
}
/**
* Constructor StorageResolverException
*
* @param _msgID
* @param _originalException
*/
public StorageResolverException(String _msgID, Exception _originalException) {
super(_msgID, _originalException);
}
/**
* Constructor StorageResolverException
*
* @param _msgID
* @param exArgs
* @param _originalException
*/
public StorageResolverException(String _msgID, Object exArgs[],
Exception _originalException) {
super(_msgID, exArgs, _originalException);
}
}