Add WorldExceptionSet super constructor

This commit is contained in:
Olof Larsson
2016-05-11 09:25:41 +02:00
parent ed15088ed5
commit 4a307e619f

View File

@@ -22,6 +22,12 @@ public class WorldExceptionSet extends ExceptionSet<World>
super(standard);
}
@SafeVarargs
public <X extends Object> WorldExceptionSet(boolean standard, X... exceptions)
{
super(standard, exceptions);
}
// -------------------------------------------- //
// CONTAINS
// -------------------------------------------- //