10 lines
181 B
Java
10 lines
181 B
Java
package com.tsc.bitbucketbot.exception;
|
|
|
|
class BitbucketBotException extends RuntimeException {
|
|
|
|
public BitbucketBotException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
}
|