/* * Copyright (C) 2009 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.services.jcr.impl.storage; import javax.jcr.InvalidItemStateException; /** * Created by The eXo Platform SAS Author : Peter Nedonosko peter.nedonosko@exoplatform.com.ua * 24.12.2007 * * @author <a href="mailto:peter.nedonosko@exoplatform.com.ua">Peter Nedonosko</a> * @version $Id: JCRInvalidItemStateException.java 34801 2009-07-31 15:44:50Z dkatayev $ */ public class JCRInvalidItemStateException extends InvalidItemStateException { /** * serialVersionUID - autogenerated. */ private static final long serialVersionUID = -1061472145637688125L; /** * Context Item Id. */ private final String itemId; /** * Context Item state. */ private final int itemState; /** * JCRInvalidItemStateException constructor. * * @param message * - context message */ public JCRInvalidItemStateException(String message) { super(message); this.itemId = null; this.itemState = -1; } /** * JCRInvalidItemStateException constructor. * * @param message * - context message * @param itemId * - context Item id */ public JCRInvalidItemStateException(String message, String itemId) { super(message); this.itemId = itemId; this.itemState = -1; } /** * JCRInvalidItemStateException constructor. * * @param message * - context message * @param itemId * - context Item id * @param itemState * - context Item state */ public JCRInvalidItemStateException(String message, String itemId, int itemState) { super(message); this.itemId = itemId; this.itemState = itemState; } /** * JCRInvalidItemStateException constructor. * *@param message * - context message * @param itemId * - context Item id * @param e - cause error */ public JCRInvalidItemStateException(String message, String itemId, Throwable e) { super(message, e); this.itemId = itemId; this.itemState = -1; } /** * JCRInvalidItemStateException constructor. * * @param message * - context message * @param itemId * - context Item id * @param itemState * - context Item state * @param e - cause error */ public JCRInvalidItemStateException(String message, String itemId, int itemState, Throwable e) { super(message, e); this.itemId = itemId; this.itemState = itemState; } /** * Get context Item Id. * * @return String Item id */ public String getIdentifier() { return itemId; } /** * Get context Item state. * * @return int state */ public int getState() { return itemState; } }