package com.react_native_tbase.OTPCode;

public class OTPCodeException extends RuntimeException {
    public String code;

    OTPCodeException(Errors error, String message) {
        super(message);
        this.code = error.toString();
    }
}