{
final String message = "myMessage";
final String path = "/my/path";
final String location = "mylocation.xml:20";
final Throwable cause = new Throwable();
final ConfigurationException exception =
new ConfigurationException( message, path, location, cause );
assertEquals( "message", message, exception.getMessage() );
assertEquals( "path", path, exception.getPath() );
assertEquals( "location", location, exception.getLocation() );
assertEquals( "cause", cause, exception.getCause() );
}