package org.biomoby.shared;

/**
 * This class is meant to be a implementation-independent
 * wrapper around the exception classes provided by the 
 * underlying SOAP client used to run MOBY services.  If you
 * catch one of these, the problem is the generic
 * transportation or transaction layer, not the MOBY layer.
 */

public class SOAPException extends java.lang.RuntimeException{


    private static final long serialVersionUID = 3257848770762126647L;

    public SOAPException(String s){
	super(s);
    }
}
