com.heavenark.infrastructure.log.exception.ArkLogRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ark-log Show documentation
Show all versions of ark-log Show documentation
Heaven Ark Infrastructure Log Framework
The newest version!
package com.heavenark.infrastructure.log.exception;
/**
* Ark log runtime exception
*
* @author 冰糕Luminous BGLuminous Luminous
* @since 1.0.0
*/
public class ArkLogRuntimeException extends RuntimeException {
/**
* Constructor with message
*
* @param format message format
* @param objs message args
*/
public ArkLogRuntimeException(String format, Object... objs) {
super(String.format(format, objs));
}
}