1 //2 //3 // ____.4 // __/\ ______| |__/\. _______5 // __ .____| | \ | +----+ \6 // _______| /--| | | - \ _ | : - \_________7 // \\______: :---| : : | : | \________>8 // |__\---\_____________:______: :____|____:_____\9 // /_____|10 //11 // . . . i n j a h i a w e t r u s t . . .12 //13 14 15 package org.jahia.exceptions;16 17 18 /**19 * This exception is 20 *21 * @author Khue Nguyen22 * @version 1.023 */24 public class JahiaArchiveFileException extends JahiaException{25 26 27 //-------------------------------------------------------------------------28 /** Default constructor29 *30 */31 public JahiaArchiveFileException (int errorCode)32 {33 super ("Archive File Exception", "Archive File Exception",34 errorCode, ERROR_SEVERITY);35 }36 37 38 39 }40