aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCommonBPMN/src/main/java/org/onap/so/client/exception/UnexpectedDataException.java
blob: 84cf491355184a6cb7817df64cee656049d605e2 (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 UnexpectedDataException extends Exception {

    public UnexpectedDataException() {}

    public UnexpectedDataException(String message, String system) {
        super("Unexpected data found in " + system + ". " + message);
    }

    public UnexpectedDataException(String message) {
        super("Unexpected data found. " + message);
    }


}