Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / ResourceKeyInvalidException.java
Simon Lindgren on 26 Mar 2020 285 bytes first commit
package net.minecraft.server;

public class ResourceKeyInvalidException extends RuntimeException {

    public ResourceKeyInvalidException(String s) {
        super(s);
    }

    public ResourceKeyInvalidException(String s, Throwable throwable) {
        super(s, throwable);
    }
}