]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
05df32c68dcd1bc9cac3d7b84f0f1abb317034f3
[tmp/jakarta-migration.git] /
1 package org.collectionspace.services.structureddate;
2
3 public class StructuredDateFormatException extends IllegalArgumentException {
4         private static final long serialVersionUID = 1L;
5         
6         public StructuredDateFormatException() {
7                 super();
8         }
9         
10         public StructuredDateFormatException(Throwable cause) {
11                 super(cause);
12         }
13
14         public StructuredDateFormatException(String message) {
15                 super(message);
16         }
17         
18         public StructuredDateFormatException(String message, Throwable cause) {
19                 super(message, cause);
20         }
21 }