KickJava   Java API By Example, From Geeks To Geeks.

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


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
16 /**
17  * This exception is thrown when the jef file is not valid.
18  *
19  * @author Khue Nguyen
20  * @version 1.0
21  */

22 public class InvalidJefFileException extends JefFileException {
23
24     //-------------------------------------------------------------------------
25
public InvalidJefFileException () {
26         super ("Invalid Jef File.");
27     }
28
29     //-------------------------------------------------------------------------
30
public InvalidJefFileException (String JavaDoc msg) {
31         super (msg);
32     }
33
34 }
35
36
Popular Tags