View Javadoc
1   /**
2    * Copyright 2014 Internet2
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  /*
17    Copyright (C) 2004-2007 University Corporation for Advanced Internet Development, Inc.
18    Copyright (C) 2004-2007 The University Of Chicago
19  
20    Licensed under the Apache License, Version 2.0 (the "License");
21    you may not use this file except in compliance with the License.
22    You may obtain a copy of the License at
23  
24      http://www.apache.org/licenses/LICENSE-2.0
25  
26    Unless required by applicable law or agreed to in writing, software
27    distributed under the License is distributed on an "AS IS" BASIS,
28    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29    See the License for the specific language governing permissions and
30    limitations under the License.
31  */
32  
33  package edu.internet2.middleware.grouper.exception;
34  
35  /**
36   * Generic Grouper exception.
37   * <p/>
38   * @author  blair christensen.
39   * @version $Id: GrouperException.java,v 1.2 2009-03-15 06:37:23 mchyzer Exp $
40   * @since   1.1.0
41   */
42  public class GrouperException extends RuntimeException {
43    private static final long serialVersionUID = 8386470587269519511L;
44    public GrouperException() { 
45      super(); 
46    }
47    public GrouperException(String msg) { 
48      super(msg); 
49    }
50    public GrouperException(String msg, Throwable cause) { 
51      super(msg, cause); 
52    }
53    public GrouperException(Throwable cause) { 
54      super(cause); 
55    }
56  } // public class GrouperException
57