KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > security > license > InvalidLicenseException


1 // $Id: InvalidLicenseException.java 3567 2003-06-30 22:32:03Z shuber $
2
//
3
// ____.
4
// __/\ ______| |__/\. _______
5
// __ .____| | \ | +----+ \
6
// _______| /--| | | - \ _ | : - \_________
7
// \\______: :---| : : | : | \________>
8
// |__\---\_____________:______: :____|____:_____\
9
// /_____|
10
//
11
// . . . i n j a h i a w e t r u s t . . .
12
//
13

14 package org.jahia.security.license;
15
16
17
18 /**
19  * This exception is thrown when the license file is not valid.
20  *
21  * @author Fulco Houkes
22  * @version 1.0
23  */

24 public class InvalidLicenseException extends Exception JavaDoc
25 {
26
27     //-------------------------------------------------------------------------
28
public InvalidLicenseException (String JavaDoc msg)
29     {
30         super (msg + "\n");
31     }
32
33     //-------------------------------------------------------------------------
34
public InvalidLicenseException ()
35     {
36         super ("Invalid license exception.");
37     }
38
39 }
40
41
Popular Tags