home *** CD-ROM | disk | FTP | other *** search
Java Source | 2003-12-19 | 574 b | 24 lines |
- package it.favaroni.db.connectionpool;
-
- /**
- * Eccezione sollevata per la richiesta di connessioni superiori al limite prestabilito.
- * Data di creazione: (27/06/2003 17.11.45)
- * @author: Roberto Favaroni
- */
-
- public class MaxNumberConnectionException extends Exception {
- /**
- * Commento del constructor MaxNumberConnectionsException.
- */
- public MaxNumberConnectionException() {
- super();
- }
- /**
- * Commento del constructor MaxNumberConnectionsException.
- * @param s java.lang.String
- */
- public MaxNumberConnectionException(String s) {
- super(s);
- }
- }
-