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 JahiaSiteNotFoundException extends JahiaException19 {20 public JahiaSiteNotFoundException (String message, int severity)21 {22 super (message, "Jahia virtual site error", SITE_NOT_FOUND, severity);23 }24 }25