*/
public UsageOutOfRangeFilter(NotificationSource notificationSource, String paramName, long lowValue, long highValue) throws NullPointerException, InvalidArgumentException {
if (notificationSource == null) throw new NullPointerException("notificationSource is null");
if (paramName == null) throw new NullPointerException("paramName is null");
if (highValue < lowValue) throw new InvalidArgumentException("highValue < lowValue");
this.notificationSource = notificationSource;
this.paramName = paramName;
this.lowValue = lowValue;
this.highValue = highValue;