Skip to content

Commit

Permalink
Fix Intellij fake warning
Browse files Browse the repository at this point in the history
  • Loading branch information
keuin committed Jan 14, 2021
1 parent a173197 commit 98274ae
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
package com.keuin.kbackupfabric.exception;

public class ZipUtilException extends Exception {
public ZipUtilException() {
}

public ZipUtilException(String gripe) {
super(gripe);
public ZipUtilException(String string) {
super(string);
}
}

0 comments on commit 98274ae

Please sign in to comment.