conversionexception.java

来自「一个java 代码生成器」· Java 代码 · 共 43 行

JAVA
43
字号
/**
 * Copyright (c) 2002, Siddhartha P. Chandurkar siddhartha@visioncodified.com
 * All rights reserved.
 * Licensed under the Academic Free License version 1.1
 * See the file LICENSE.TXT for details.
 * LICENSE.txt is located in the directory  <install-directory>\Jenerator
 * of your Jenertaor Installation.
 *
 **/
package com.jenerator.converter;


/**
 * ConversionException
 * This exception is thrown when the Jenerator encounters any exception during
 * the conversion of the DataBase MetaData into Objects or in any other future
 * forms of conversion.
 *
 * @author Siddhartha P. Chandurkar
 * @version 0.9.0
 */
public class ConversionException extends Exception {

    //ATTRIBUTES
    //The origin of the exception
    private Exception exception;

    //CONSTRUCTORS
    public ConversionException() {
        super();
    }

    public ConversionException(Exception exception) {
        super();
        this.exception = exception;
    }

    //METHODS
    public String toString() {
        return "Error in convertion from Database to Objects \n[ " + exception.toString() + " ]";
    }
}//ConversionException

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?