org.chaostocosmos.chaosgraph.NotMatchElementException 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: NotMatchElementException
* 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 NotMatchElementException extends RuntimeException
{
/**
* Error message
* @since JDK1.4.1
*/
public static final String ERR_STR = "ERROR - The element is not matched with graph. Please check graph type.";
/**
* Constructor
* @since JDK1.4.1
*/
public NotMatchElementException()
{
this(ERR_STR);
}
/**
* Constructor
* @param str String
* @since JDK1.4.1
*/
public NotMatchElementException(String str)
{
super(str);
}
}