]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
246b3e0b994a40def9da07f0c968eec3f3aaefdc
[tmp/jakarta-migration.git] /
1 package org.collectionspace.services.structureddate;
2
3 public class InvalidDateException extends RuntimeException {
4
5         private static final long serialVersionUID = 1L;
6
7         InvalidDateException() {
8                 super();
9         }
10         
11         InvalidDateException(String message) {
12                 super(message);
13         }
14 }