org.chaostocosmos.chaosgraph.NotMatchArrayException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chaosgraph Show documentation
Show all versions of chaosgraph Show documentation
This library contributes to making charts on AWT/Swing/SWT components. It can be used for AWT/Swing applications and Eclipse SWT (Standard Widget Toolkit) applications. If you would try to build a service of RAP dashboard web application, this library will provide great UX experience and excellent interactive functionality to the service for users.
/**
* Chaos Graph API
*/
package org.chaostocosmos.chaosgraph;
/**
* Title: MotMatchArrayException
* Description:
*
* Copyright: Copyleft (c) 2006
* Company: ChaosToCosmos
* @author 9ins
* @version 1.0, 2001/8/13 19:30 First draft
* @version 1.2, 2006/7/5
*/
public class NotMatchArrayException extends Exception
{
/**
* Error text
* @since JDK1.4.1
*/
public static final String ERR_STR = "ERROR - Graph elements are not to get same size of array. Please check graph elements values size.";
/**
* Constructor
* @since JDK1.4.1
*/
public NotMatchArrayException()
{
this(ERR_STR);
}
/**
* Constructor
* @param str String ����
* @since JDK1.4.1
*/
public NotMatchArrayException(String str)
{
super(str);
}
}