1 /* The contents of this file are subject to the license and copyright terms 2 * detailed in the license directory at the root of the source tree (also 3 * available online at http://www.fedora.info/license/). 4 */ 5 package org.fedoracommons.funapi; 6 7 8 /** 9 * 10 * @author Edwin Shin 11 * @since 0.1 12 * @version $Id: IdentifierException.java 33 2008-10-25 19:31:36Z pangloss $ 13 */ 14 public class IdentifierException 15 extends UnapiException { 16 17 private static final long serialVersionUID = 1L; 18 19 public IdentifierException(String message, Throwable cause) { 20 super(404, message, cause); 21 } 22 23 public IdentifierException(String message) { 24 this(message, null); 25 } 26 }