/*
 * JBoss, the OpenSource EJB server
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package javax.xml.soap;

import org.jboss.util.id.SerialVersion;

/**
 * @author Scott.Stark@jboss.org
 * @version $Revision: 1.1.8.2 $
 */
public class SOAPException
   extends Exception
{
   /** @since 4.0.2 */
   static final long serialVersionUID;
   static
   {
      if (SerialVersion.version == SerialVersion.LEGACY)
         serialVersionUID = -4385552115225336830L;
      else
         serialVersionUID = 5083961510786058130L;
   }

   public SOAPException()
   {
   }

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

   public SOAPException(String message, Throwable cause)
   {
      super(message, cause);
   }

   public SOAPException(Throwable cause)
   {
      super(cause);
   }
}