fork download
  1. class IORuntimeException extends RuntimeException {
  2.  
  3. final IOException ioex;
  4.  
  5. public IORuntimeException(IOException ioex) {
  6. this.ioex = ioex;
  7. }
  8.  
  9. public int hashCode() {
  10. return ioex.hashCode();
  11. }
  12.  
  13. public boolean equals(Object obj) {
  14. return ioex.equals(obj);
  15. }
  16.  
  17. public String getMessage() {
  18. return ioex.getMessage();
  19. }
  20.  
  21. public String getLocalizedMessage() {
  22. return ioex.getLocalizedMessage();
  23. }
  24.  
  25. public Throwable getCause() {
  26. return ioex.getCause();
  27. }
  28.  
  29. public Throwable initCause(Throwable cause) {
  30. return ioex.initCause(cause);
  31. }
  32.  
  33. public String toString() {
  34. return ioex.toString();
  35. }
  36.  
  37. public void printStackTrace() {
  38. ioex.printStackTrace();
  39. }
  40.  
  41. public void printStackTrace(PrintStream s) {
  42. ioex.printStackTrace(s);
  43. }
  44.  
  45. public void printStackTrace(PrintWriter s) {
  46. ioex.printStackTrace(s);
  47. }
  48.  
  49. public Throwable fillInStackTrace() {
  50. return ioex.fillInStackTrace();
  51. }
  52.  
  53. public StackTraceElement[] getStackTrace() {
  54. return ioex.getStackTrace();
  55. }
  56.  
  57. public void setStackTrace(StackTraceElement[] stackTrace) {
  58. ioex.setStackTrace(stackTrace);
  59. }
  60. }
  61.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty