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

com.heavenark.infrastructure.log.exception.ArkLogRuntimeException Maven / Gradle / Ivy

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));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy