1 // $Id: InvalidBuildNumberException.java 3567 2003-06-30 22:32:03Z shuber $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 package org.jahia.security.license;15 16 17 18 /**19 * This exception is thrown when the build number in the license file is not20 * the same as the server build number.21 *22 * @author Fulco Houkes23 * @version 1.024 */25 public class InvalidBuildNumberException extends LicenseException26 {27 28 //-------------------------------------------------------------------------29 public InvalidBuildNumberException ()30 {31 super ("Invalid license build number.");32 }33 }34 35