FileDocCategorySizeDatePackage
MappingNotFoundException.javaAPI DocHibernate 3.2.5972Wed Jul 26 06:32:20 BST 2006org.hibernate

MappingNotFoundException

public class MappingNotFoundException extends MappingException
Thrown when a resource for a mapping could not be found.
author
Max Rydahl Andersen

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);
	
Methods Summary
public java.lang.StringgetPath()

		return path;
	
public java.lang.StringgetType()

		return type;