use of io.vertx.up.exception._500InternalServerException in project vertx-zero by silentbalanceyh.
the class ErrorTc method buildError.
@Test
public void buildError() {
final WebException error = new _500InternalServerException(this.getClass(), "Error Internal");
System.out.println(error);
Assert.assertNotNull(error);
}
Aggregations