01: /*******************************************************************************
02: * $URL:
03: * $Id:
04: * **********************************************************************************
05: *
06: * Copyright (c) 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the
09: * "License"); you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17: * License for the specific language governing permissions and limitations under
18: * the License.
19: *
20: ******************************************************************************/package org.sakaiproject.citation.util.api;
21:
22: public class OsidConfigurationException extends Exception {
23: /**
24: * Thrown to indicate an Osid authorization/configuration issue
25: * @param text Explainatory text
26: */
27: public OsidConfigurationException(String text) {
28: super (text);
29: }
30:
31: /**
32: * Thrown to indicate an Osid authorization/configuration issue
33: */
34: public OsidConfigurationException() {
35: super();
36: }
37: }
|