NemesLaszlo/Forum

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

Summary

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

public class SubforumNotFoundException extends RuntimeException {

    public SubforumNotFoundException(String message) {
        super(message);
    }
}