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