Skip to content

Commit

Permalink
feat: Add SkinException class to handle runtime exceptions related to…
Browse files Browse the repository at this point in the history
… skin overlay
  • Loading branch information
GeorgeV220 committed Jun 11, 2023
1 parent 6ab5611 commit dc53c82
Showing 1 changed file with 20 additions and 0 deletions.
@@ -0,0 +1,20 @@
package com.georgev22.skinoverlay.exceptions;

public class SkinException extends RuntimeException {

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

public SkinException(String message, Throwable cause) {
super(message, cause);
}

public SkinException(Throwable cause) {
super(cause);
}

public SkinException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}

0 comments on commit dc53c82

Please sign in to comment.