blob: d033215bf4e3bfe4dd63d7e2bd8bff57e05f8e5d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2020 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Junji MAEDA - initial API and implementation
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.visualization.internal.engines.lowvision.color;
public class ColorException extends Exception{
public static final String ALPHA_EXISTS = "Alpha value exists.";
/**
*
*/
private static final long serialVersionUID = 3622924352947460191L;
public ColorException(){
super();
}
public ColorException( String _s ){
super(_s);
}
}