org.opentripplanner.api.common.ParameterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.api.common;
/**
* Signals a problem parsing or interpreting a query parameter.
*/
public class ParameterException extends Exception {
private static final long serialVersionUID = 1L;
public Message message;
public ParameterException(Message message) {
this.message = message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy