File History: src/main/java/com/paymentlink/exception/RegionBlockedException.java

← View file content

File Content at Commit 9c24ca4

1 package com.paymentlink.exception;
2
3 public class RegionBlockedException extends RuntimeException {
4
5 private final String countryCode;
6 private final String countryName;
7
8 public RegionBlockedException(String countryCode, String countryName) {
9 super("Access denied for region: " + countryName + " (" + countryCode + ")");
10 this.countryCode = countryCode;
11 this.countryName = countryName;
12 }
13
14 public String getCountryCode() {
15 return countryCode;
16 }
17
18 public String getCountryName() {
19 return countryName;
20 }
21 }
22

Commits

Commit Author Date Message File SHA Actions
f0438c2 <f69e50@finnacloud.com> 1766443042 +0300 12/22/2025, 10:37:22 PM increment once more d2f1960 View
188fc92 <f69e50@finnacloud.com> 1766442998 +0300 12/22/2025, 10:36:38 PM increment d2f1960 View
4617f76 <f69e50@finnacloud.com> 1766442953 +0300 12/22/2025, 10:35:53 PM rename branch from main to master oops d2f1960 View
e6d1548 <f69e50@finnacloud.com> 1766442769 +0300 12/22/2025, 10:32:49 PM add initial test workflow file d2f1960 View
9c24ca4 <f69e50@finnacloud.com> 1766442705 +0300 12/22/2025, 10:31:45 PM add CI configuration and test script for Jenkins build d2f1960 Hide
690c1f6 <f69e50@finnacloud.com> 1766368110 +0300 12/22/2025, 1:48:30 AM initialize backend structure with controllers, DTOs, and configuration files d2f1960 View