com.genesys.statistics.StatisticsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of statistics Show documentation
Show all versions of statistics Show documentation
A Java library to interface to Genesys Statistics public API
The newest version!
package com.genesys.statistics;
public class StatisticsException extends Exception
{
public StatisticsException(String msg)
{
super(msg);
}
public StatisticsException(String msg, Exception cause)
{
super(msg, cause);
}
}