public class Exceptions extends Object
Create IllegalStateException's
and IllegaArgumentException's
with richly formatted error messages.
throw Exceptions.illegalArg("port must be >= %s and <= %s", 0, 65535);
Constructor and Description |
---|
Exceptions() |
Modifier and Type | Method and Description |
---|---|
protected static String |
formattedMessage(String msg,
Object... args) |
static IllegalArgumentException |
illegalArg(String msg) |
static IllegalArgumentException |
illegalArg(String msg,
Object... args) |
static IllegalArgumentException |
illegalArg(Throwable cause) |
static IllegalArgumentException |
illegalArg(Throwable cause,
String msg,
Object... args) |
static IllegalStateException |
illegalState(String msg) |
static IllegalStateException |
illegalState(String msg,
Object... args) |
static IllegalStateException |
illegalState(Throwable cause) |
static IllegalStateException |
illegalState(Throwable cause,
String msg,
Object... args) |
public Exceptions()
public static IllegalStateException illegalState(Throwable cause)
public static IllegalStateException illegalState(String msg)
public static IllegalStateException illegalState(String msg, Object... args)
public static IllegalStateException illegalState(Throwable cause, String msg, Object... args)
public static IllegalArgumentException illegalArg(Throwable cause)
public static IllegalArgumentException illegalArg(String msg)
public static IllegalArgumentException illegalArg(String msg, Object... args)
public static IllegalArgumentException illegalArg(Throwable cause, String msg, Object... args)
protected static String formattedMessage(String msg, Object... args)
Copyright © 2010–2014 The Kuali Foundation. All rights reserved.