ecararus/product-catalogue

View on GitHub
src/main/java/com/eca/customer/exception/UnknownCustomer.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.eca.customer.exception;

public final class UnknownCustomer extends RuntimeException {

    public UnknownCustomer() {
        super("There was a problem retrieving the customer information");
    }

}