001package cn.sticki.validator.spel.exception;
002
003/**
004 * Spel 校验异常
005 *
006 * @author 阿杆
007 * @version 1.0
008 * @since 2024/4/29
009 */
010public class SpelValidException extends RuntimeException {
011
012        public SpelValidException(String message) {
013                super(message);
014        }
015
016        public SpelValidException(String message, Throwable cause) {
017                super(message, cause);
018        }
019
020        public SpelValidException(Throwable cause) {
021                super(cause);
022        }
023
024}