001package net.sf.jkniv.reflect; 002 003/** 004 * Indicate that some Object could not be found. 005 * 006 * @author Alisson Gomes 007 * @since 0.6.0 008 */ 009public class ObjectNotFoundException extends ReflectionException 010{ 011 private static final long serialVersionUID = -5813925852549886446L; 012 public ObjectNotFoundException() 013 { 014 super(); 015 } 016 017 public ObjectNotFoundException(String msg) 018 { 019 super(msg); 020 } 021 022 public ObjectNotFoundException(String msg, Throwable cause) 023 { 024 super(msg, cause); 025 } 026 027 public ObjectNotFoundException(Throwable cause) 028 { 029 super(cause); 030 } 031 032}