Skip to content

Commit

Permalink
chore: fix exception classes
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandra-bel committed Feb 29, 2024
1 parent 74495d3 commit 2f2e498
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@

package org.eclipse.tractusx.managedidentitywallets.exception;

import java.io.Serial;

public class MissingVcTypesException extends RuntimeException {
@Serial
private static final long serialVersionUID = 1L;

public MissingVcTypesException(String message) {
super(message);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@

package org.eclipse.tractusx.managedidentitywallets.exception;

import java.io.Serial;

public class PermissionViolationException extends RuntimeException {
@Serial
private static final long serialVersionUID = 1L;

public PermissionViolationException(String message) {
super(message);
Expand Down

0 comments on commit 2f2e498

Please sign in to comment.