GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / commons / org / codehaus / groovy / grails / exceptions / MoreThanOneActiveDataSourceException.java
blobc159cf466cd6e6933e4f18bf1d73e72f63f0df48
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.exceptions;
18 /**
19 * <p>Thrown when more than one active data source is configured.
21 * @author Steven Devijver
22 * @since Aug 6, 2005
24 public class MoreThanOneActiveDataSourceException extends
25 GrailsDataSourceException {
27 public MoreThanOneActiveDataSourceException() {
28 super();
31 public MoreThanOneActiveDataSourceException(String arg0) {
32 super(arg0);
35 public MoreThanOneActiveDataSourceException(String arg0, Throwable arg1) {
36 super(arg0, arg1);
39 public MoreThanOneActiveDataSourceException(Throwable arg0) {
40 super(arg0);