Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@
<scope>provided</scope>
</dependency>

<!-- Firefly Kernel (foundational: exceptions, shared abstractions) -->
<dependency>
<groupId>org.fireflyframework</groupId>
<artifactId>fireflyframework-kernel</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Firefly Common Cache - Unified caching library -->
<dependency>
<groupId>org.fireflyframework</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
package org.fireflyframework.web.error.exceptions;

import lombok.Getter;
import org.fireflyframework.kernel.exception.FireflyException;
import org.springframework.http.HttpStatus;

import java.util.Collections;
Expand All @@ -30,7 +31,7 @@
* Supports additional metadata and nested errors.
*/
@Getter
public class BusinessException extends RuntimeException {
public class BusinessException extends FireflyException {
/**
* The HTTP status code to be returned in the response.
*/
Expand Down