blob: 718c5f5627a6795e1614fefcb7005acfa7a1533a [file] [log] [blame]
/**
*
* Copyright 2005-2006 The Apache Software Foundation or its licensors, as applicable.
*
* 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.apache.xbean.propertyeditor;
/**
* An exception for property editor conversion problems.
*
* @version $Rev: 6680 $
*/
public class PropertyEditorException extends RuntimeException {
/**
* Default constructor for a PropertyException.
*/
public PropertyEditorException() {
}
/**
* PropertyEditorException with a wrappered inner exception.
*
* @param cause Original root cause of the PropertyEditorException.
*/
public PropertyEditorException(Throwable cause) {
super(cause);
}
/**
* A PropertyEditorException with just an error message.
*
* @param message The text error message describing the condition.
*/
public PropertyEditorException(String message) {
super(message);
}
/**
* An exception with both a message and an internal exception.
*
* @param message The test error message.
* @param cause The root cause for the exception.
*/
public PropertyEditorException(String message, Throwable cause) {
super(message, cause);
}
}