git-svn-id: http://talendforge.org/svn/tos/trunk@73207 f6f1c999-d317-4740-80b0-e6d1abc6f99e
44 lines
1.1 KiB
Java
44 lines
1.1 KiB
Java
/*******************************************************************************
|
|
* Copyright (c) 2011 Talend Inc. - www.talend.com
|
|
* All rights reserved.
|
|
*
|
|
* This program and the accompanying materials are made available
|
|
* under the terms of the Apache License v2.0
|
|
* which accompanies this distribution, and is available at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
******************************************************************************/
|
|
package routines.system.api;
|
|
|
|
/**
|
|
* A special type of exception
|
|
* that will signal job waiting for request
|
|
* that it should quit it's listening cycle (if any)
|
|
*/
|
|
public class ESBJobInterruptedException extends Exception {
|
|
|
|
/**
|
|
* Generated SV UID
|
|
*/
|
|
private static final long serialVersionUID = -1570949226819610043L;
|
|
|
|
/**
|
|
* Constructor from parent class
|
|
*
|
|
* @param message
|
|
*/
|
|
public ESBJobInterruptedException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
/**
|
|
* Constructor from parent class
|
|
*
|
|
* @param message
|
|
*/
|
|
public ESBJobInterruptedException(String message, Throwable e) {
|
|
super(message, e);
|
|
}
|
|
|
|
}
|