KickJava   Java API By Example, From Geeks To Geeks.

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


1 //
2
// ____.
3
// __/\ ______| |__/\. _______
4
// __ .____| | \ | +----+ \
5
// _______| /--| | | - \ _ | : - \_________
6
// \\______: :---| : : | : | \________>
7
// |__\---\_____________:______: :____|____:_____\
8
// /_____|
9
//
10
// . . . i n j a h i a w e t r u s t . . .
11
//
12

13 package org.jahia.security.license;
14
15
16
17 /**
18  * This exception is used when the license id is invalid.
19  *
20  * @author Khue Nguyen
21  * @version 1.0
22  */

23 public class InvalidLicenseIDException extends LicenseException
24 {
25
26     //-------------------------------------------------------------------------
27
public InvalidLicenseIDException()
28     {
29         super ("The license is invalid");
30     }
31 }
32
33
Popular Tags