package com.example.fuzzControll.exception.serverException;

import com.example.fuzzControll.exception.BaseException;

public class ServerException extends BaseException {
    private static final long serialVersionUID = 1L;
    public ServerException(String defaultMessage) {
        super(defaultMessage, "server");
    }
}