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

com.taobao.csp.sentinel.slots.block.flow.FlowException Maven / Gradle / Ivy

There is a newer version: 1.8.3
Show newest version
package com.taobao.csp.sentinel.slots.block.flow;

import com.taobao.csp.sentinel.slots.block.BlockException;

/***
 * 限流异常
 * 
 * @author youji.zj [email protected]
 * @since 2014-5-17
 *
 */
public class FlowException extends BlockException {


	private static final long serialVersionUID = -7553916367525117674L;

	public FlowException(String ruleLimitApp) {
		super(ruleLimitApp);
	}

	public FlowException(String message, Throwable cause) {
		super(message, cause);
	}

	public FlowException(String ruleLimitApp, String message) {
		super(ruleLimitApp, message);
	}
	
	 @Override
	 public Throwable fillInStackTrace() {
		 return this;
	 }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy