/** * ESUP-Portail Helpdesk - Copyright (c) 2004-2009 ESUP-Portail consortium. */ package org.esupportail.helpdesk.exceptions; import org.esupportail.commons.exceptions.ObjectNotFoundException; /** * An exception thrown when trying to retrieve non-existent tickets. */ public class TicketNotFoundException extends ObjectNotFoundException { /** * the id for serialization. */ private static final long serialVersionUID = -2154597533461018290L; /** * Bean constructor. * @param message * @param cause */ protected TicketNotFoundException(final String message, final Exception cause) { super(message, cause); } /** * Bean constructor. * @param message */ public TicketNotFoundException(final String message) { super(message); } /** * Bean constructor. * @param cause */ public TicketNotFoundException(final Exception cause) { super(cause); } }