Skip to content

Commit

Permalink
Moved CommandParsingException
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectMoon committed Jul 3, 2010
1 parent b8307e9 commit e316416
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/ring/commands/parser/CommandParsingException.java
@@ -0,0 +1,12 @@
package ring.commands.parser;

@SuppressWarnings("serial")
public class CommandParsingException extends Exception {
public CommandParsingException(String msg) {
super(msg);
}

public CommandParsingException(String msg, Throwable cause) {
super(msg, cause);
}
}

0 comments on commit e316416

Please sign in to comment.