From b3d0580439b9a00c7eb918085de1694151066004 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Thu, 18 Jun 2026 16:02:49 +0000
Subject: [PATCH] rename packages
---
fdx_convert/src/main/java/com/megatim/fdxconvert/exceptions/ValidatorException.java | 26 ++++++++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/fdx_convert/src/main/java/com/megatim/fdxconvert/exceptions/ValidatorException.java b/fdx_convert/src/main/java/com/megatim/fdxconvert/exceptions/ValidatorException.java
new file mode 100644
index 0000000..75a599b
--- /dev/null
+++ b/fdx_convert/src/main/java/com/megatim/fdxconvert/exceptions/ValidatorException.java
@@ -0,0 +1,26 @@
+/*
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
+ */
+package com.megatim.fdxconvert.exceptions;
+
+/**
+ *
+ * @author STEPHANIE
+ */
+public class ValidatorException extends RuntimeException {
+
+ public ValidatorException(String message) {
+ super(message);
+
+ }
+
+ public ValidatorException(Throwable cause) {
+ super(cause);
+ }
+
+ public ValidatorException(String message,Throwable cause) {
+ super(message, cause);
+ }
+
+}
--
Gitblit v1.10.0