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

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

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

/**
 * Boot exception
 * @Author: SuLiang
 * @Date: 2018/11/14
 */
public class BootException extends ContainerException{
	public BootException() {
		super();
	}

	public BootException(String message, Object... args) {
		super(message, args);
	}

	public BootException(String message, Throwable cause, Object... args) {
		super(message, cause, args);
	}

	public BootException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace, Object... args) {
		super(message, cause, enableSuppression, writableStackTrace, args);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy