Skip to content

Commit

Permalink
feat: added common unhealthy cache exception
Browse files Browse the repository at this point in the history
  • Loading branch information
mherwig committed Apr 15, 2024
1 parent 5347faa commit 0c7bf86
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package de.telekom.eni.pandora.horizon.exception;

import de.telekom.eni.pandora.horizon.common.exception.HorizonException;

public class UnhealthyCacheException extends HorizonException {

public UnhealthyCacheException(String message, Throwable e) {
super(message, e);
}

public UnhealthyCacheException(String message) {
super(message);
}
}

0 comments on commit 0c7bf86

Please sign in to comment.