KickJava   Java API By Example, From Geeks To Geeks.

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


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 a key could not be found.
18  *
19  * @author Khue Nguyen
20  * @version 1.0
21  */

22 public class JefFileKeyNotFoundException extends JefFileException {
23
24     //-------------------------------------------------------------------------
25
public JefFileKeyNotFoundException (String JavaDoc keyName) {
26         super ("Key Not Found : " + keyName);
27     }
28
29
30 }
31
32
Popular Tags