
com.blinkfox.jpack.exception.DockerPackException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpack-maven-plugin Show documentation
Show all versions of jpack-maven-plugin Show documentation
这是一个用于对 SpringBoot 服务打包为 Windows、Linux 下可部署包的 Maven 插件。
package com.blinkfox.jpack.exception;
/**
* Docker 构建、打包等过程中的异常.
*
* @author blinkfox on 2019-05-13.
*/
public class DockerPackException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* 附带msg信息的构造方法.
*
* @param msg 消息
*/
public DockerPackException(String msg) {
super(msg);
}
/**
* 附带msg信息的构造方法.
*
* @param msg 消息
* @param t Throwable实例.
*/
public DockerPackException(String msg, Throwable t) {
super(msg, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy