1 package org.collectionspace.services.structureddate;
3 public class StructuredDateFormatException extends IllegalArgumentException {
4 private static final long serialVersionUID = 1L;
6 public StructuredDateFormatException() {
10 public StructuredDateFormatException(Throwable cause) {
14 public StructuredDateFormatException(String message) {
18 public StructuredDateFormatException(String message, Throwable cause) {
19 super(message, cause);