Sheero

HeapOverflowException

Jun 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. //Zehra Baig
  2. //CSC-236-C1
  3. //Lab 6-B
  4.  
  5. public class HeapOverflowException extends Exception
  6. {
  7.     public HeapOverflowException()
  8.     {
  9.         super();
  10.     }
  11.    
  12.     public HeapOverflowException(String msg)
  13.     {
  14.         super(msg);
  15.     }
  16. }
Add Comment
Please, Sign In to add comment