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

com.legstar.codegen.CodeGenVelocityException Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2015 LegSem.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v2.1
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 * 
 * Contributors:
 *     LegSem - initial API and implementation
 ******************************************************************************/
package com.legstar.codegen;

/**
 * Exception when initializing or using the velocity engine.
 */
public class CodeGenVelocityException extends Exception {

    /** Unique serial ID. */
    private static final long serialVersionUID = -2054414464524552977L;

    /**
     * Build Exception from message.
     * @param message exception description
     */
    public CodeGenVelocityException(final String message) {
        super(message);
    }

    /**
     * Build Exception from inner exception.
     * @param e the inner exception
     */
    public CodeGenVelocityException(final Exception e) {
        super(e);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy