KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > services > jef > JefFileException


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.services.jef;
14
15 import org.jahia.exceptions.JahiaException;
16
17
18 /**
19  * All the Jef File Exception are derived from this class.
20  *
21  * @author Khue Nguyen
22  * @version 1.0
23  */

24 public class JefFileException extends JahiaException {
25
26     //-------------------------------------------------------------------------
27
/**
28      * Default constructor
29      *
30      * @param message Error message.
31      */

32     public JefFileException (String JavaDoc message) {
33         super (message, message, JEF_ERROR, KISSYOURASSGOODBYE_SEVERITY);
34     }
35
36 }
37
38
Popular Tags