source: src/main/java/mk/ukim/finki/busngo/model/exceptions/UnauthorizedAccess.java@ e272096

Last change on this file since e272096 was e272096, checked in by ppaunovski <paunovskipavel@…>, 4 months ago

All 3 main use cases implemented.

  1. Starting a commute
  2. Writing a ticket
  3. Starting an instance of a Bus Line
  • Property mode set to 100644
File size: 187 bytes
Line 
1package mk.ukim.finki.busngo.model.exceptions;
2
3public class UnauthorizedAccess extends RuntimeException {
4 public UnauthorizedAccess(String message) {
5 super(message);
6 }
7}
Note: See TracBrowser for help on using the repository browser.