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