This commit is contained in:
vladp
2025-11-27 18:01:02 +07:00
parent 1fd1570669
commit e6d7fa7aae
3 changed files with 30 additions and 4 deletions
@@ -0,0 +1,7 @@
package ru.soune.no_copy.exception;
public class TokenNotFoundException extends RuntimeException {
public TokenNotFoundException(String message) {
super(message);
}
}