/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.test.webservice.samples2;

// $Id: OrderException.java,v 1.1.2.1 2005/02/13 15:24:12 tdiesler Exp $

/**
 * A custom exception
 *
 * @author Thomas.Diesler@jboss.org
 * @since Feb 12, 2005
 */
public class OrderException extends Exception
{
   public OrderException(String message)
   {
      super(message);
   }
}