Skip to content
Snippets Groups Projects
Select Git revision
  • c7648e79b5663812a89a76795c3ff05bd2cf9329
  • main default protected
  • variant
3 results

Controller.class

Blame
  • Forked from COUETOUX Basile / FirefighterStarter
    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);
        }
    }