mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-07-23 14:03:43 +00:00

Found using PMD and FindBugs. git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1553 e251c2fe-e539-e718-e476-b85c1f46cddb
15 lines
240 B
Java
15 lines
240 B
Java
package com.earth2me.essentials.commands;
|
|
|
|
public class NotEnoughArgumentsException extends Exception {
|
|
|
|
public NotEnoughArgumentsException()
|
|
{
|
|
super();
|
|
}
|
|
|
|
public NotEnoughArgumentsException(final Throwable ex)
|
|
{
|
|
super(ex);
|
|
}
|
|
|
|
}
|