GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( a930d8...6caa5b )
by Glythcing
04:02 queued 17s
created

t.extension.folder.TemporaryFolderException.TemporaryFolderException(String,Exception)   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 2
c 1
b 0
f 0
rs 10
cc 1
1
package io.github.glytching.junit.extension.folder;
2
3
public class TemporaryFolderException extends RuntimeException {
4
5
    public TemporaryFolderException(String message, Exception cause) {
6
        super(message, cause);
7
    }
8
}