All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.commondatamodel.objectmodel.utilities.CdmException Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

package com.microsoft.commondatamodel.objectmodel.utilities;

public class CdmException extends Exception {
    private static final long serialVersionUID = -2327313620869310516L;

    public CdmException(final String message) {
        super(message);
    }

    public CdmException(final String message, final Throwable throwable) {
        super(message, throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy