KickJava   Java API By Example, From Geeks To Geeks.

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


1 // $Id: LicenseException.java 1292 2002-08-08 13:11:05Z 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 import org.jahia.exceptions.JahiaException;
17
18
19 /**
20  * All the license exception are derived from this class.
21  *
22  * @author Fulco Houkes
23  * @version 1.0
24  */

25 public class LicenseException extends JahiaException
26 {
27
28     //-------------------------------------------------------------------------
29
/**
30      * Default constructor
31      *
32      * @param message
33      * Error message.
34      */

35     public LicenseException (String JavaDoc message)
36     {
37         super (message, message, LICENSE_ERROR, KISSYOURASSGOODBYE_SEVERITY);
38     }
39
40 }
41
42
Popular Tags