Add WorldExceptionSet super constructor

This commit is contained in:
Olof Larsson 2016-05-11 09:25:41 +02:00
parent ed15088ed5
commit 4a307e619f
No known key found for this signature in database
GPG Key ID: BBEF14F97DA52474

View File

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