We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51cda1c commit 8108324Copy full SHA for 8108324
1 file changed
src/main/java/dev/resms/services/sms/Sms.java
@@ -27,7 +27,7 @@ public Sms(final String apiKey) {
27
* @return The response indicating the status of the sms sending.
28
* @throws ReSMSException If an error occurs while sending the SMS.
29
*/
30
- public SendSmsResponse send(SendSmsOptions sendSmsOptions) {
+ public SendSmsResponse send(SendSmsOptions sendSmsOptions) throws ReSMSException {
31
SendSmsOptionsValidator.validate(sendSmsOptions);
32
33
String payload = super.reSMSMapper.toJson(sendSmsOptions);
0 commit comments