package org.simantics.scl.reflection; /** * Thrown when a SCL type could not be converted to a Java class. * @author Hannu Niemistö */ public class TypeNotFoundException extends Exception { private static final long serialVersionUID = 6507735480719948758L; public TypeNotFoundException() { super(); } public TypeNotFoundException(String message, Throwable cause) { super(message, cause); } public TypeNotFoundException(String message) { super(message); } public TypeNotFoundException(Throwable cause) { super(cause); } }