001 /** 002 * UnImplementedException.java 003 * jCOLIBRI2 framework. 004 * @author Juan A. Recio-García. 005 * GAIA - Group for Artificial Intelligence Applications 006 * http://gaia.fdi.ucm.es 007 * 11/01/2007 008 */ 009 package jcolibri.exception; 010 011 /** 012 * Exception thrown when something is not implemented yet. 013 * @author Juan A. Recio-García 014 * @version 2.0 015 */ 016 public class UnImplementedException extends Exception { 017 private static final long serialVersionUID = 1L; 018 019 public UnImplementedException(String msg) 020 { 021 super(msg); 022 } 023 024 public UnImplementedException(Exception ex) 025 { 026 super(ex); 027 } 028 }