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

/**
 * @author <a href="mailto:tom@jboss.org">Tom Elrod</a>
 */
public class InvalidMarshallingResource extends Exception
{
   public InvalidMarshallingResource(String s)
   {
      super(s);
   }
}