KickJava   Java API By Example, From Geeks To Geeks.

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


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.exceptions;
14
15
16
17
18 public class JahiaSecurityException extends JahiaException
19 {
20     public JahiaSecurityException (String JavaDoc message, int severity)
21     {
22         super ("Jahia internal security error", message, SECURITY_ERROR, severity);
23     }
24 }
25
Popular Tags