write sms type to db

This commit is contained in:
ltiongku
2024-08-14 19:44:18 +08:00
parent 334b3867ec
commit 9adb53e7ab
5 changed files with 37 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
package com.safeqr.app.exceptions;
public class InvalidFormatExceptions extends RuntimeException {
public InvalidFormatExceptions(String message){
super(message);
}
}