GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / persistence / org / codehaus / groovy / grails / orm / hibernate / exceptions / GrailsHibernateException.java
blobe5e2a47a3d9fe73015cafcaa92d8afed79960c65
1 /*
2 * Copyright 2004-2005 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.codehaus.groovy.grails.orm.hibernate.exceptions;
18 import org.codehaus.groovy.grails.exceptions.GrailsException;
20 /**
21 * <p>Base exception class for errors related to Hibernate configuration in Grails.
23 * @author Steven Devijver
24 * @since Aug 6, 2005
26 public abstract class GrailsHibernateException extends GrailsException {
28 public GrailsHibernateException() {
29 super();
32 public GrailsHibernateException(String arg0) {
33 super(arg0);
36 public GrailsHibernateException(String arg0, Throwable arg1) {
37 super(arg0, arg1);
40 public GrailsHibernateException(Throwable arg0) {
41 super(arg0);