Junjie
2026-04-13 3e28500e76ffd71b7da90f40d1f3126c00a0e5f0
1
2
3
4
5
6
7
8
9
10
11
12
package com.core.exception;
 
public class CoolException extends RuntimeException {
 
    public CoolException(Throwable cause) {
        super(cause);
    }
 
    public CoolException(String message) {
        super(message);
    }
}