Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class EmptyWaitingArrayException extends RuntimeException {
  2.   private String s;
  3.   public EmptyWaitingArrayException() {
  4.     this.s = "EmptyWaitingArrayException occurred: ";
  5.   }
  6.  
  7.   public String toString(){
  8.     return ( + s);
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement