mirror of
https://git.hmsn.ink/kospo/helptalk/api.git
synced 2026-03-20 20:13:45 +09:00
8 lines
181 B
Java
8 lines
181 B
Java
package com.kospo.talk.exception;
|
|
|
|
public class CustomNoTokenException extends RuntimeException{
|
|
public CustomNoTokenException(String message) {
|
|
super(message);
|
|
}
|
|
}
|