Skip to content
Snippets Groups Projects
Select Git revision
  • cad426c7da1df85b74ba0e7ec59c2087ddffff68
  • master default protected
2 results

App.java

Blame
  • Forked from SAYEH Nahlane ghina / graphic-2020..
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    EntityNotFoundException.java 150 B
    package model;
    
    class EntityNotFoundException extends Exception {
        public EntityNotFoundException(String message) {
            super(message);
        }
    }