org.netxms.client.snmp.SnmpObjectIdFormatException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netxms-client Show documentation
Show all versions of netxms-client Show documentation
NetXMS client library - complete JAVA API
/**
*
*/
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;
}
}