All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.core.bean.BeanOperationException Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright (C) 2008 feilong
 *
 * 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 com.feilong.core.bean;

import com.feilong.core.DefaultRuntimeException;

//Exception又分为两类:一种是CheckedException,一种是UncheckedException.
//
//这两种Exception的区别主要是CheckedException需要用try...catch...显示的捕获,
//而UncheckedException不需要捕获. 通常UncheckedException又叫做RuntimeException.
//  
//《effective java》指出:
//  对于可恢复的条件使用被检查的异常(CheckedException),
//  对于程序错误(言外之意不可恢复,大错已经酿成)使用运行时异常(RuntimeException).

/**
 * 使用org.apache.commons.beanutils包下的类出现的异常.
 * 
 * 

说明:

*
*
    *
  1. this is a runtime (unchecked) exception.
    * Beans exceptions are usually fatal;
    * there is no reason for them to be checked.
  2. *
*
* * @author feilong * @see "org.springframework.beans.BeansException" * @since 1.9.0 */ public final class BeanOperationException extends DefaultRuntimeException{ /** The Constant serialVersionUID. */ private static final long serialVersionUID = -1699987643831455524L; /** * Instantiates a new bean util exception. * * @param message * the message * @param cause * the cause */ public BeanOperationException(String message, Throwable cause){ super(message, cause); } /** * Instantiates a new bean util exception. * * @param cause * the cause */ public BeanOperationException(Throwable cause){ super(cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy