package at.gv.egiz.moazs; public class MoaZSException extends RuntimeException { public MoaZSException(String s, Throwable throwable) { super(s, throwable); } public MoaZSException(String s) { super(s); } public static MoaZSException moaZSException(String formatString, Object... objects) { return new MoaZSException(String.format(formatString, objects)); } public static MoaZSException moaZSException(String message) { return new MoaZSException(String.format(message)); } }