1 package org.jahia.exceptions; 2 3 /** 4 * This exception is raised when a session is requested which is null, this 5 * will be concidered as a session expiration in most of the cases. 6 * 7 * @author Fulco Houkes 8 * @version 1.0 9 */ 10 public class JahiaServerOverloadedException extends JahiaException 11 { 12 //------------------------------------------------------------------------- 13 /** Default constructor 14 */ 15 public JahiaServerOverloadedException() 16 { 17 super ("503 - server overloaded", "503 - Server Overloaded", 18 UNAVAILABLE_ERROR , ERROR_SEVERITY); 19 } 20 } 21