ZenScript main repository
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 184B

123456789
  1. public class IOException : Exception {
  2. public this(message as string) {
  3. super(message);
  4. }
  5. /*public this(message as string, cause as Exception) {
  6. super(message, cause);
  7. }*/
  8. }