2
zj
2025-08-12 6bd127d2cc8d5edaf9a03a9e7e825cbc729f380b
1
2
3
4
5
6
7
package org.example.parser;
 
public class DecodingException extends RuntimeException {
    public DecodingException(String message) {
        super(message);
    }
}