org.osgi.service.deploymentadmin.spi.ResourceProcessorException Maven / Gradle / Ivy
Show all versions of payment-retries-plugin Show documentation
/*
* Copyright (c) OSGi Alliance (2005, 2012). All Rights Reserved.
*
* Licensed 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.osgi.service.deploymentadmin.spi;
import java.io.InputStream;
/**
* Checked exception received when something fails during a call to a Resource
* Processor. A {@code ResourceProcessorException} always contains an error code
* (one of the constants specified in this class), and may optionally contain
* the textual description of the error condition and a nested cause exception.
*/
public class ResourceProcessorException extends Exception {
/**
*
*/
private static final long serialVersionUID = 9135007015668223386L;
/**
* Resource Processors are allowed to raise an exception with this error
* code to indicate that the processor is not able to commit the operations
* it made since the last call of
* {@link ResourceProcessor#begin(DeploymentSession)} method.
*
*
* Only the {@link ResourceProcessor#prepare()} method is allowed to throw
* exception with this error code.
*/
public static final int CODE_PREPARE = 1;
/**
* An artifact of any resource already exists.
*
*
* Only the {@link ResourceProcessor#process(String, InputStream)} method is
* allowed to throw exception with this error code.
*/
public static final int CODE_RESOURCE_SHARING_VIOLATION = 461;
/**
* Other error condition.
*
*
* All Resource Processor methods which throw
* {@code ResourceProcessorException} is allowed throw an exception with
* this error code if the error condition cannot be categorized.
*/
public static final int CODE_OTHER_ERROR = 463;
private final int code;
/**
* Create an instance of the exception.
*
* @param code The error code of the failure. Code should be one of the
* predefined integer values ({@code CODE_X}).
* @param message Message associated with the exception
* @param cause the originating exception
*/
public ResourceProcessorException(int code, String message, Throwable cause) {
super(message, cause);
this.code = code;
}
/**
* Create an instance of the exception. Cause exception is implicitly set to
* null.
*
* @param code The error code of the failure. Code should be one of the
* predefined integer values ({@code CODE_X}).
* @param message Message associated with the exception
*/
public ResourceProcessorException(int code, String message) {
super(message);
this.code = code;
}
/**
* Create an instance of the exception. Cause exception and message are
* implicitly set to null.
*
* @param code The error code of the failure. Code should be one of the
* predefined integer values ({@code CODE_X}).
*/
public ResourceProcessorException(int code) {
super();
this.code = code;
}
/**
* Returns the cause of this exception or {@code null} if no cause was set.
*
* @return The cause of this exception or {@code null} if no cause was set.
*/
public Throwable getCause() {
return super.getCause();
}
/**
* Initializes the cause of this exception to the specified value.
*
* @param cause The cause of this exception.
* @return This exception.
* @throws IllegalArgumentException If the specified cause is this
* exception.
* @throws IllegalStateException If the cause of this exception has already
* been set.
* @since 1.0.1
*/
public Throwable initCause(Throwable cause) {
return super.initCause(cause);
}
/**
* @return Returns the code.
*/
public int getCode() {
return code;
}
}