1 // $Id: MaxUserLimitException.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 used when the maximum number of users has been reached.20 *21 * @author Fulco Houkes22 * @version 1.023 */24 public class MaxUserLimitException extends LicenseException25 {26 27 //-------------------------------------------------------------------------28 public MaxUserLimitException()29 {30 super ("License maximum number of users reached!");31 }32 }33 34