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

com.shark.container.exception.ContainerException Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.shark.container.exception;

import com.shark.util.util.StringUtil;

/**
 * Container exception
 * @Author: SuLiang
 * @Date: 2018/11/14
 */
abstract class ContainerException extends RuntimeException{
	ContainerException() {
		super();
	}

	ContainerException(String message, Object... args) {
		super(StringUtil.format(message,args));
	}

	ContainerException(String message, Throwable cause, Object... args) {
		super(StringUtil.format(message,args), cause);
	}

	ContainerException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace, Object... args) {
		super(StringUtil.format(message,args), cause, enableSuppression, writableStackTrace);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy