-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: rename INSTALLED_COMPONENT_NOT_FOUND->COMPONENT_LOAD_FAILURE; ad…
…d CUSTOM_PLUGIN_NOT_SUPPORTED (#1503)
- Loading branch information
1 parent
ce086cb
commit 57cc468
Showing
7 changed files
with
59 additions
and
26 deletions.
There are no files selected for viewing
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
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
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
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
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
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
22 changes: 22 additions & 0 deletions
22
...ava/com/aws/greengrass/lifecyclemanager/exceptions/CustomPluginNotSupportedException.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,22 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package com.aws.greengrass.lifecyclemanager.exceptions; | ||
|
||
public class CustomPluginNotSupportedException extends ServiceLoadException { | ||
static final long serialVersionUID = -3387516993124229948L; | ||
|
||
public CustomPluginNotSupportedException(String message) { | ||
super(message); | ||
} | ||
|
||
public CustomPluginNotSupportedException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public CustomPluginNotSupportedException(Throwable cause) { | ||
super(cause); | ||
} | ||
} |