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

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

The 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 - 2025 Weber Informatics LLC | Privacy Policy