with Ada.Exceptions;

package Bookstore.Exceptions is

   -- a book have not been found
5   Book_Not_Found_Exception : exception;

   -- books have not been found
   Books_Not_Found_Exception : exception;

10   -- an order cannot be completed
   Order_Exception : exception;

end Bookstore.Exceptions;
top