KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > exceptions > JahiaArchiveFileException


1 //
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
15 package org.jahia.exceptions;
16
17
18 /**
19  * This exception is
20  *
21  * @author Khue Nguyen
22  * @version 1.0
23  */

24 public class JahiaArchiveFileException extends JahiaException{
25     
26
27     //-------------------------------------------------------------------------
28
/** Default constructor
29      *
30      */

31     public JahiaArchiveFileException (int errorCode)
32     {
33         super ("Archive File Exception", "Archive File Exception",
34                errorCode, ERROR_SEVERITY);
35     }
36     
37     
38     
39 }
40
Popular Tags