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 import org.jahia.exceptions.JahiaException;16 17 18 /**19 * All the Jef File Exception are derived from this class.20 *21 * @author Khue Nguyen22 * @version 1.023 */24 public class JefFileException extends JahiaException {25 26 //-------------------------------------------------------------------------27 /**28 * Default constructor29 *30 * @param message Error message.31 */32 public JefFileException (String message) {33 super (message, message, JEF_ERROR, KISSYOURASSGOODBYE_SEVERITY);34 }35 36 }37 38