01: /*
02:
03: * LIUS - Lucene Index Update and Search
04: * http://sourceforge.net/projects/lius/
05: *
06: * Copyright (c) 2005, Laval University Library. All rights reserved.
07: *
08: * This library is free software; you can redistribute it and/or
09: * modify it under the terms of the GNU Lesser General Public
10: * License as published by the Free Software Foundation; either
11: * version 2.1 of the License, or (at your option) any later version.
12: *
13: * This library is distributed in the hope that it will be useful,
14: * but WITHOUT ANY WARRANTY; without even the implied warranty of
15: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16: * Lesser General Public License for more details.
17: *
18: * You should have received a copy of the GNU Lesser General Public
19: * License along with this library; if not, write to the Free Software
20: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21: */
22:
23: package ca.ulaval.bibl.lius.Exception;
24:
25: /**
26: *
27: * Classe permettant de gérer les exceptions de Lius.
28: *
29: * <br/><br/>
30: *
31: * Class that manage Lius exceptions.
32: *
33: * @author Rida Benjelloun (rida.benjelloun@bibl.ulaval.ca)
34: *
35: */
36:
37: public class LiusException extends Exception {
38:
39: /**
40: *
41: * Constructeur de la classe, il se base sur le constructeur de la classe
42: *
43: * Exception pour afficher les messages d'erreur
44: *
45: * <br/><br/>
46: *
47: * Constructor of the class. It is based on the constructor of Exception
48: * class to
49: *
50: * print errors messages.
51: *
52: */
53:
54: public LiusException(String msg) {
55:
56: super(msg);
57:
58: }
59:
60: }
|