Skip to content

Commit

Permalink
COMMERCE-11941 autogenerated code (gw buildService)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-ale-sbarra authored and brianchandotcom committed Aug 24, 2023
1 parent 667abe2 commit 20480cf
Showing 1 changed file with 35 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/**
* SPDX-FileCopyrightText: (c) 2023 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/

package com.liferay.commerce.product.exception;

import com.liferay.portal.kernel.exception.PortalException;

/**
* @author Marco Leo
*/
public class DuplicateCPDefinitionOptionValueRelKeyException
extends PortalException {

public DuplicateCPDefinitionOptionValueRelKeyException() {
}

public DuplicateCPDefinitionOptionValueRelKeyException(String msg) {
super(msg);
}

public DuplicateCPDefinitionOptionValueRelKeyException(
String msg, Throwable throwable) {

super(msg, throwable);
}

public DuplicateCPDefinitionOptionValueRelKeyException(
Throwable throwable) {

super(throwable);
}

}

0 comments on commit 20480cf

Please sign in to comment.