com.wavefront.agent.data.DataSubmissionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy Show documentation
Show all versions of proxy Show documentation
Service for batching and relaying metric traffic to Wavefront
package com.wavefront.agent.data;
/**
* Exception to bypass standard handling for response status codes.
*
* @author [email protected]
*/
public abstract class DataSubmissionException extends Exception {
public DataSubmissionException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy