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.security.license;14 15 16 17 /**18 * This exception is used when the license id is invalid.19 *20 * @author Khue Nguyen21 * @version 1.022 */23 public class InvalidLicenseIDException extends LicenseException24 {25 26 //-------------------------------------------------------------------------27 public InvalidLicenseIDException()28 {29 super ("The license is invalid");30 }31 }32 33