<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// ##########################################################################
// ####                                                                  ####
// ####                  Publikations-Manager Komponenten                ####
// ####                ====================================              ####
// ####                                                                  ####
// #### DatenbankException.java                                          ####
// ####                                                                  ####
// #### Version 1.00, 19. Dezember 1999                                  ####
// ####                                                                  ####
// #### Copyright (C) 1999  Thomas Dreibholz                             ####
// ####               2000  Universität Bonn                             ####
// ####               EMail: dreibh@exp-math.uni-essen.de                ####
// ####               WWW:   http://www.exp-math.uni-essen.de/~dreibh    ####
// ####                                                                  ####
// ####                                                                  ####
// ##########################################################################


// ****** DatenbankException *********************************************
public class DatenbankException extends Exception
{
   // ###### Konstruktor ohne Parameter ##################################
   public DatenbankException() { }

   
   // ###### Konstruktor mit Nachricht als Parameter #####################
   public DatenbankException(String msg)
   {
      // Konstruktor der Basisklasse aufrufen
      super(msg);
   }
}
</pre></body></html>