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

org.chaostocosmos.chaosgraph.NotMatchArrayException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.1.2
Show newest version
/**
 * 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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy