All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.LimitExceededException Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs;

/**
 * Thrown by a method that causes a user/system specified limit to be exceeded.
 * 
 * @author nm
 *
 */
@SuppressWarnings("serial")
public class LimitExceededException extends RuntimeException {

    public LimitExceededException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy