org.movealong.persistence.HibernateFacadeException.java Source code

Java tutorial

Introduction

Here is the source code for org.movealong.persistence.HibernateFacadeException.java

Source

/*
 * (c) Copyright 2010 Nate Riffe <inkblot@movealong.org>
 *
 * This file is part of movealong-hibernate.
 *
 * movealong-hibernate is free software: you can redistribute it and/or
 * modify it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * movealong-hibernate is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public
 * License along with movealong-hibernate.  If not, see
 * <http://www.gnu.org/licenses/>.
 */
package org.movealong.persistence;

import org.hibernate.HibernateException;

/**
 * The super class of all exceptions that can be thrown from misuse of {@link HibernateFacade} 
 */
public class HibernateFacadeException extends HibernateException {
    public HibernateFacadeException(String s) {
        super(s);
    }
}