Contains standard libraries for ZenCode.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IllegalArgumentException.zs 179B

1234567
  1. [Native("stdlib::IllegalArgumentException")]
  2. public class IllegalArgumentException : Exception {
  3. [Native("constructor")]
  4. public this(message as string) {
  5. super(message);
  6. }
  7. }