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.

IOException.zs 237B

1234567891011
  1. [Native("io::IOException")]
  2. public class IOException : Exception {
  3. [Native("constructor")]
  4. public this(message as string) {
  5. super(message);
  6. }
  7. /*public this(message as string, cause as Exception) {
  8. super(message, cause);
  9. }*/
  10. }