Question
For the rest of this PA, we will be building our own Lab Queue system step-by-step. Just like the one we use for CSE 11,
For the rest of this PA, we will be building our own Lab Queue system step-by-step. Just like the one we use for CSE 11, we will want our Lab Queue to be able to store tickets, remove tickets, lock, etc. We will build it component-by-component, focusing on (and testing) each individual component one at a time. First, we need to design a class to represent tickets. Each ticket should be able to store a student name, a description, and a unique identifier. However, before we can actually write a class to represent tickets, we need to define our own custom exceptions to throw if the user were to misuse the class we create. TASK: Create two new exceptions, InvalidStudentNameException and InvalidDescriptionException, that both extend the Exception class. They must both have a constructor that has a single parameter of type String called message, which just calls the corresponding superclass constructor.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started