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 16 /**17 * This exception is thrown when the jef file is not valid.18 *19 * @author Khue Nguyen20 * @version 1.021 */22 public class InvalidJefFileException extends JefFileException {23 24 //-------------------------------------------------------------------------25 public InvalidJefFileException () {26 super ("Invalid Jef File.");27 }28 29 //-------------------------------------------------------------------------30 public InvalidJefFileException (String msg) {31 super (msg);32 }33 34 }35 36