package org.simantics.scl.reflection; /** * Thrown when there was no suitable SCL value for given URI. * @author Hannu Niemistö */ public class ValueNotFoundException extends Exception { private static final long serialVersionUID = 6632560554523580437L; public ValueNotFoundException() { super(); } public ValueNotFoundException(String message, Throwable cause) { super(message, cause); } public ValueNotFoundException(String message) { super(message); } public ValueNotFoundException(Throwable cause) { super(cause); } }