package com.example.fuzzControll.exception.mysqlException;

import com.example.fuzzControll.exception.BaseException;

public class MysqlException extends BaseException {
    private static final long serialVersionUID = 1L;

    public MysqlException(String defaultMessage) {
        super(defaultMessage, "mysql");
    }
}