Compare commits
2 Commits
3fe4a1b244
...
medrias
Author | SHA1 | Date | |
---|---|---|---|
27c444f3b4 | |||
c589da2a14 |
@@ -11,27 +11,31 @@ import java.util.logging.Logger;
|
|||||||
*/
|
*/
|
||||||
public class BadCommandUsage extends RuntimeException {
|
public class BadCommandUsage extends RuntimeException {
|
||||||
|
|
||||||
/** Constructs a new runtime exception with no message or cause.
|
/**
|
||||||
|
* Constructs a new runtime exception with no message or cause.
|
||||||
*/
|
*/
|
||||||
public BadCommandUsage() {
|
public BadCommandUsage() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Constructs a new runtime exception with the specified cause.
|
/**
|
||||||
|
* Constructs a new runtime exception with the specified cause.
|
||||||
* @param cause the cause.
|
* @param cause the cause.
|
||||||
*/
|
*/
|
||||||
public BadCommandUsage(Throwable cause) {
|
public BadCommandUsage(Throwable cause) {
|
||||||
super(cause);
|
super(cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Constructs a new runtime exception with the specified message.
|
/**
|
||||||
|
* Constructs a new runtime exception with the specified message.
|
||||||
* @param message the message.
|
* @param message the message.
|
||||||
*/
|
*/
|
||||||
public BadCommandUsage(String message) {
|
public BadCommandUsage(String message) {
|
||||||
super(message);
|
super(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Constructs a new runtime exception with the specified message and cause.
|
/**
|
||||||
|
* Constructs a new runtime exception with the specified message and cause.
|
||||||
* @param message the message.
|
* @param message the message.
|
||||||
* @param cause the cause.
|
* @param cause the cause.
|
||||||
*/
|
*/
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>papermc</id>
|
<id>papermc</id>
|
||||||
<url>https://papermc.io/repo/repository/maven-public/</url>
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
<!-- WorldEdit -->
|
<!-- WorldEdit -->
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>papermc</id>
|
<id>papermc</id>
|
||||||
<url>https://papermc.io/repo/repository/maven-public/</url>
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>fabricmc</id>
|
<id>fabricmc</id>
|
||||||
|
Reference in New Issue
Block a user