Fixed errors when not using the Questioner plugin

This commit is contained in:
Robin Kupper
2011-06-06 20:00:20 +02:00
parent b9563044ce
commit c04a895a24

View File

@@ -0,0 +1,10 @@
package de.diddiz.LogBlockQuestioner;
public class QuestionerException extends Exception
{
private static final long serialVersionUID = -1925764344890253869L;
public QuestionerException(String msg) {
super(msg);
}
}