dsa

Data Structures & Algorithms - Spring 2018
Log | Files | Refs | README

ExtendedQueueException.java (208B)


      1 package lab6;
      2 
      3 public class ExtendedQueueException extends RuntimeException {
      4     public ExtendedQueueException(String s) {
      5         super(s);
      6     }  // end constructor
      7 }  // end ExtendedQueueException