1 /***************************************************************************2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 package org.exoplatform.commons.exception;6 /*7 * @author: Tuan Nguyen8 * @version: $Id: ObjectNotFoundException.java,v 1.2 2004/04/06 21:07:18 tuan08 Exp $9 * @since: 0.010 * @email: tuan08@yahoo.com11 */12 public class ObjectNotFoundException extends Exception {13 14 public ObjectNotFoundException(String s) {15 super(s) ;16 }17 18 }19