package org.simantics.objmap.exceptions; import org.simantics.db.exception.DatabaseException; public class MappingException extends DatabaseException { private static final long serialVersionUID = 5381307568357191426L; public MappingException() { super(); } public MappingException(String message) { super(message); } public MappingException(Throwable cause) { super(cause); } public MappingException(String message, Throwable cause) { super(message, cause); } }