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

org.netxms.client.snmp.SnmpObjectIdFormatException Maven / Gradle / Ivy

There is a newer version: 5.0.6
Show newest version
/**
 * 
 */
package org.netxms.client.snmp;

/**
 * SNMP Object Id format exception
 *
 */
public class SnmpObjectIdFormatException extends Exception
{
	private static final long serialVersionUID = 5474043433024422833L;
	
	private String message;

	public SnmpObjectIdFormatException(String message)
	{
		this.message = message;
	}

	/* (non-Javadoc)
	 * @see java.lang.Throwable#getMessage()
	 */
	@Override
	public String getMessage()
	{
		return message;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy