9 lines
180 B
Java
9 lines
180 B
Java
package com.test.payment.exceptions;
|
|
|
|
|
|
public class MpesaPermanentException extends RuntimeException {
|
|
public MpesaPermanentException(String msg) {
|
|
super(msg);
|
|
}
|
|
}
|