Package org.intermine.metadata
Class MetaDataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.intermine.metadata.MetaDataException
-
- All Implemented Interfaces:
java.io.Serializable
public class MetaDataException extends java.lang.ExceptionAn Exception that may be thrown if metadata is in an invalid state. Some aspects of metadata cannot be validated on model construction.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MetaDataException()Constructs an MetaDataExceptionMetaDataException(java.lang.String msg)Constructs an MetaDataException with the specified detail message.MetaDataException(java.lang.String msg, java.lang.Throwable t)Constructs an MetaDataException with the specified detail message and nested throwable.MetaDataException(java.lang.Throwable t)Constructs an MetaDataException with the specified nested throwable.
-
-
-
Constructor Detail
-
MetaDataException
public MetaDataException()
Constructs an MetaDataException
-
MetaDataException
public MetaDataException(java.lang.String msg)
Constructs an MetaDataException with the specified detail message.- Parameters:
msg- the detail message
-
MetaDataException
public MetaDataException(java.lang.Throwable t)
Constructs an MetaDataException with the specified nested throwable.- Parameters:
t- the nested throwable
-
MetaDataException
public MetaDataException(java.lang.String msg, java.lang.Throwable t)Constructs an MetaDataException with the specified detail message and nested throwable.- Parameters:
msg- the detail messaget- the nested throwable
-
-