source: src/main/java/com/example/exceptions/InvalidArgumentsException.java

Last change on this file was a51a591, checked in by colovik <j.colovik@…>, 14 months ago

final

  • Property mode set to 100644
File size: 195 bytes
Line 
1package com.example.exceptions;
2
3public class InvalidArgumentsException extends RuntimeException {
4
5 public InvalidArgumentsException() {
6 super("Invalid arguments exception");
7 }
8}
Note: See TracBrowser for help on using the repository browser.