package org.wyona.yarep.core; /** * */ public class NoSuchPropertyException extends RepositoryException { /** * */ public NoSuchPropertyException() { super(); } /** * */ public NoSuchPropertyException(Throwable t) { super(t); } /** * */ public NoSuchPropertyException(String s) { super(s); } /** * */ public NoSuchPropertyException(String s, Throwable t) { super(s, t); } }