
com.microsoft.azure.toolkit.lib.common.exception.InvalidConfigurationException Maven / Gradle / Ivy
The newest version!
/*
* 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.azure.toolkit.lib.common.exception;
public class InvalidConfigurationException extends AzureToolkitException {
private static final long serialVersionUID = 3122420022403832460L;
public InvalidConfigurationException(String message) {
super(message);
}
public InvalidConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy