1 package org.exoplatform.services.xml.querying.object;2 3 /** This exception is thrown when condition occurred 4 * @version $Id: ObjectMarshalException.java 566 2005-01-25 12:50:49Z kravchuk $*/5 public class ObjectMarshalException extends Exception {6 /** Constructs an Exception without a message. */7 public ObjectMarshalException() {8 super();9 }10 11 /**12 * Constructs an Exception with a detailed message.13 * @param Message The message associated with the exception.14 */15 public ObjectMarshalException(String message) {16 super(message);17 }18 }19