Sheero

StackOverflowException

Jun 7th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. //Zehra Baig
  2. //CSC-236-C1
  3. //Lab 4-A
  4.  
  5. public class StackOverflowException extends StackException
  6. {
  7.     public StackOverflowException()
  8.     {
  9.         super("Error: Stack Overflow");
  10.     }
  11.    
  12.     public StackOverflowException(String message)
  13.     {
  14.         super(message);
  15.     }
  16. }
Add Comment
Please, Sign In to add comment