aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/exceptions/NotFoundException.java
blob: 0616aa1f1e9a0a2b7215e8622fea8dd529541544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.onap.vid.exceptions;

public class NotFoundException extends RuntimeException {

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

    public NotFoundException(String message, Throwable cause) {
        super(message, cause);
    }
}