/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.opens.slurpmanager.exception; /** * * @author jkowalczyk */ public class WrongURIException extends Exception{ public WrongURIException(){ super(); } public WrongURIException(String message){ super(message); } }