mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-02 00:37:59 +01:00
9 lines
239 B
Java
9 lines
239 B
Java
|
package com.minelittlepony;
|
||
|
|
||
|
public class MissingRendererException extends RuntimeException {
|
||
|
|
||
|
public MissingRendererException(Class<?> cl) {
|
||
|
super("Could not find a renderer for " + cl.getName() + ". This is a bug.");
|
||
|
}
|
||
|
}
|