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

com.scudata.dm.CanceledException Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.dm;

import com.scudata.common.MessageManager;
import com.scudata.resources.ParallelMessage;

/**
 * ??ҵ??ȡ??????????쳣
 * @author Joancy
 *
 */
public class CanceledException extends RuntimeException {
	private static final long serialVersionUID = 4988636705167197473L;
	static MessageManager mm = ParallelMessage.get();

	public static String TYPE_MONITOR = mm.getMessage("CanceledException.monitor");
	public static String TYPE_IDE = "Canceled by IDE.";
	public static String TYPE_OTHER = "Canceled by other task.";
	
	/**
	 * ȱʡ???캯??
	 */
	public CanceledException() {
	}

	/**
	 * ???캯??
	 * @param msg ȡ??ԭ??
	 */
	public CanceledException(String msg) {
		super(msg);
	}

	/**
	 * ???캯??
	 * @param msg ȡ??ԭ??
	 * @param cause ?????????쳣
	 */
	public CanceledException(String msg, Throwable cause) {
		super(msg, cause);
	}

	/**
	 * ???캯??
	 * @param cause ?????????쳣
	 */
	public CanceledException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy