package org.gcube.data.spd.model.exceptions; public class InvalidRecordException extends Exception { /** * */ private static final long serialVersionUID = 1L; public InvalidRecordException() { // TODO Auto-generated constructor stub } public InvalidRecordException(String message) { super(message); // TODO Auto-generated constructor stub } public InvalidRecordException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public InvalidRecordException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }