1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.xmzs.midjourney.exception;
|
| public class SnowFlakeException extends RuntimeException {
|
| public SnowFlakeException(String message) {
| super(message);
| }
|
| public SnowFlakeException(String message, Throwable cause) {
| super(message, cause);
| }
|
| public SnowFlakeException(Throwable cause) {
| super(cause);
| }
| }
|
|