NemesLaszlo/Forum

View on GitHub
src/main/java/com/forum/exceptions/SpringForumException.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.forum.exceptions;

public class SpringForumException extends RuntimeException {

    public SpringForumException(String exMessage, Exception exception) {
        super(exMessage, exception);
    }

    public SpringForumException(String exMessage) {
        super(exMessage);
    }
}