forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
COMMERCE-11941 autogenerated code (gw buildService)
- Loading branch information
1 parent
667abe2
commit 20480cf
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
...m/liferay/commerce/product/exception/DuplicateCPDefinitionOptionValueRelKeyException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
|
||
} |