blob: d4cc7809d0882988c5f01a3c69e99c2e9548ef45 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.pear.tools;
import org.apache.uima.InternationalizedRuntimeException;
/**
* Exception thrown if PEAR installation fails.
*/
public class PackageInstallerException extends InternationalizedRuntimeException {
private static final long serialVersionUID = 6261840563059646801L;
/**
* Creates a new <code>PackageInstallerException</code> with the specified message.
*
* @param aResourceBundleName
* the base name of the resource bundle in which the message for this exception is
* located.
* @param aMessageKey
* an identifier that maps to the message for this exception. The message may contain
* placeholders for arguments as defined by the
* {@link java.text.MessageFormat MessageFormat} class.
* @param aArguments
* The arguments to the message. <code>null</code> may be used if the message has no
* arguments.
*/
public PackageInstallerException(String aResourceBundleName, String aMessageKey,
Object[] aArguments) {
super(aResourceBundleName, aMessageKey, aArguments, null);
}
/**
* Creates a new <code>PackageInstallerException</code> with the specified message.
*
* @param aResourceBundleName
* the base name of the resource bundle in which the message for this exception is
* located.
* @param aMessageKey
* an identifier that maps to the message for this exception. The message may contain
* placeholders for arguments as defined by the
* {@link java.text.MessageFormat MessageFormat} class.
*/
public PackageInstallerException(String aResourceBundleName, String aMessageKey) {
super(aResourceBundleName, aMessageKey, null, null);
}
/**
* Creates a new <code>PackageInstallerException</code> with the specified message and cause.
*
* @param aResourceBundleName
* the base name of the resource bundle in which the message for this exception is
* located.
* @param aMessageKey
* an identifier that maps to the message for this exception. The message may contain
* placeholders for arguments as defined by the
* {@link java.text.MessageFormat MessageFormat} class.
* @param aCause
* the original exception that caused this exception to be thrown, if any
*/
public PackageInstallerException(String aResourceBundleName, String aMessageKey, Throwable aCause) {
super(aResourceBundleName, aMessageKey, null, aCause);
}
/**
* Creates a new <code>PackageInstallerException</code> with the specified message and cause.
*
* @param aResourceBundleName
* the base name of the resource bundle in which the message for this exception is
* located.
* @param aMessageKey
* an identifier that maps to the message for this exception. The message may contain
* placeholders for arguments as defined by the
* {@link java.text.MessageFormat MessageFormat} class.
* @param aArguments
* The arguments to the message. <code>null</code> may be used if the message has no
* arguments.
* @param aCause
* the original exception that caused this exception to be thrown, if any
*/
public PackageInstallerException(String aResourceBundleName, String aMessageKey,
Object[] aArguments, Throwable aCause) {
super(aResourceBundleName, aMessageKey, aArguments, aCause);
}
}