com.vmware.connectors.common.web.InvalidUserActionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connectors-config Show documentation
Show all versions of connectors-config Show documentation
Common config code for developing connectors
/*
* Copyright © 2019 VMware, Inc. All Rights Reserved.
* SPDX-License-Identifier: BSD-2-Clause
*/
package com.vmware.connectors.common.web;
public class InvalidUserActionException extends RuntimeException {
public InvalidUserActionException(String message) {
super(message);
}
}