1 package org.simantics.scl.reflection;
4 * Thrown when there was no suitable SCL value for given URI.
5 * @author Hannu Niemistö
7 public class ValueNotFoundException extends Exception {
9 private static final long serialVersionUID = 6632560554523580437L;
11 public ValueNotFoundException() {
15 public ValueNotFoundException(String message, Throwable cause) {
16 super(message, cause);
19 public ValueNotFoundException(String message) {
23 public ValueNotFoundException(Throwable cause) {