package ecologylab.bigsemantics.metametadata.exceptions; public class MetaMetadataException extends RuntimeException { public MetaMetadataException() { // TODO Auto-generated constructor stub } public MetaMetadataException(String message) { super(message); // TODO Auto-generated constructor stub } public MetaMetadataException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public MetaMetadataException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }