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

io.github.glytching.junit.extension.folder.TemporaryFolderException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 4
c 1
b 0
f 0
wmc 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A TemporaryFolderException(String,Exception) 0 2 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
}