aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCommonBPMN/src/main/java/org/onap/so/client/exception/ExpectedDataException.java
blob: 12ab165c3a181c350083b2faf3e849f6994b6da5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.onap.so.client.exception;


public class ExpectedDataException extends Exception {

    public ExpectedDataException() {}

    public ExpectedDataException(String message, String system) {
        super("Expected data not found in " + system + ". " + message);
    }

    public ExpectedDataException(String message) {
        super("Expected data not found. " + message);
    }


}