1
zj
2024-06-19 e89e598b0fd8e8b60eb8b3697a7d93460b2342ac
1
2
3
4
5
6
7
package org.example.parser;
 
public class DecodingException extends RuntimeException {
    public DecodingException(String message) {
        super(message);
    }
}