001 /** 002 * OntoBride library 003 * Departamento de Ingeniería del Software e Inteligencia Artificial 004 * Universidad Complutense de Madrid 005 * 006 * Licensed under the terms of the GNU Library or Lesser General Public License (LGPL) 007 * 008 * @author Juan A. Recio García 009 * 010 * This software is a subproject of the jCOLIBRI framework 011 * http://sourceforge.net/projects/jcolibri-cbr/ 012 * http://gaia.fdi.ucm.es/projects/jcolibri/ 013 * 014 * File: OntoBridgeException.java 015 * 22/11/2006 016 */ 017 package es.ucm.fdi.gaia.ontobridge.exceptions; 018 019 /** 020 * Root class for the exceptions used by OntoBridge 021 * 022 * @author Juan A. Recio García 023 */ 024 public class OntoBridgeException extends Exception { 025 026 private static final long serialVersionUID = 1L; 027 028 }