01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/sam/trunk/component/src/java/org/sakaiproject/tool/assessment/util/Iso8601FormatException.java $
03: * $Id: Iso8601FormatException.java 9273 2006-05-10 22:34:28Z daisyf@stanford.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the"License");
09: * 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,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.sakaiproject.tool.assessment.util;
21:
22: /**
23: * <p>Title: NavigoProject.org</p>
24: * <p>Description: OKI based implementation</p>
25: * <p>Copyright: Copyright 2003 Trustees of Indiana University</p>
26: * <p>Company: </p>
27: * @author <a href="mailto:lance@indiana.edu">Lance Speelmon</a>
28: * @version $Id: Iso8601FormatException.java 9273 2006-05-10 22:34:28Z daisyf@stanford.edu $
29: */
30: public class Iso8601FormatException extends FormatException {
31: /**
32: * Creates a new Iso8601FormatException object.
33: *
34: * @param message DOCUMENTATION PENDING
35: */
36: public Iso8601FormatException(String message) {
37: super (message);
38: }
39:
40: /**
41: * Creates a new Iso8601FormatException object.
42: *
43: * @param message DOCUMENTATION PENDING
44: * @param cause DOCUMENTATION PENDING
45: */
46: public Iso8601FormatException(String message, Throwable cause) {
47: super (message, cause);
48: }
49:
50: /**
51: * Creates a new Iso8601FormatException object.
52: *
53: * @param cause DOCUMENTATION PENDING
54: */
55: public Iso8601FormatException(Throwable cause) {
56: super(cause);
57: }
58: }
|