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

com.spun.util.FormattedException Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package com.spun.util;

public class FormattedException extends RuntimeException
{
  private static final long serialVersionUID = 1L;
  public FormattedException(String string, Object... params)
  {
    super(String.format(string, params));
    //SimpleLogger.variable(this.getMessage());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy