MappingNotFoundExceptionpublic class MappingNotFoundException extends MappingException Thrown when a resource for a mapping could not be found. |
Fields Summary |
---|
private final String | path | private final String | type |
Constructors Summary |
---|
public MappingNotFoundException(String customMessage, String type, String path, Throwable cause)
super(customMessage, cause);
this.type=type;
this.path=path;
| public MappingNotFoundException(String customMessage, String type, String path)
super(customMessage);
this.type=type;
this.path=path;
| public MappingNotFoundException(String type, String path)
this(type + ": " + path + " not found", type, path);
| public MappingNotFoundException(String type, String path, Throwable cause)
this(type + ": " + path + " not found", type, path, cause);
|
|