* @exception ConnectException If the connection fails.
* @exception AdminException If the request fails.
*/
public static void setDefaultThreshold(int serverId, int threshold) throws ConnectException, AdminException {
if (wrapper == null)
throw new ConnectException("Administrator not connected.");
wrapper.setDefaultThreshold(serverId, threshold);
}