GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / persistence / org / codehaus / groovy / grails / orm / hibernate / exceptions / GrailsQueryException.java
blob3cd5a0da3406e65b959e40adef458afda84eb4f9
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 Domain class queries in Grails
23 * @author Graeme Rocher
24 * @since Nov 22, 2005
26 public class GrailsQueryException extends GrailsException {
28 public GrailsQueryException() {
29 super();
32 public GrailsQueryException(String arg0, Throwable arg1) {
33 super(arg0, arg1);
36 public GrailsQueryException(String arg0) {
37 super(arg0);
40 public GrailsQueryException(Throwable arg0) {
41 super(arg0);