-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename DefaultStoreNotInitialized Exception
- Loading branch information
Showing
3 changed files
with
47 additions
and
47 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
38 changes: 0 additions & 38 deletions
38
src/main/java/org/spdx/core/DefaultStoreNotInitialized.java
This file was deleted.
Oops, something went wrong.
38 changes: 38 additions & 0 deletions
38
src/main/java/org/spdx/core/DefaultStoreNotInitializedException.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,38 @@ | ||
/** | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* Copyright (c) 2024 Source Auditor Inc. | ||
*/ | ||
package org.spdx.core; | ||
|
||
/** | ||
* Exception where the default store is used before it has been initialized | ||
* | ||
* @author Gary O'Neall | ||
* | ||
*/ | ||
@SuppressWarnings("unused") | ||
public class DefaultStoreNotInitializedException extends InvalidSPDXAnalysisException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public DefaultStoreNotInitializedException() { | ||
} | ||
|
||
public DefaultStoreNotInitializedException(String arg0) { | ||
super(arg0); | ||
} | ||
|
||
public DefaultStoreNotInitializedException(Throwable arg0) { | ||
super(arg0); | ||
} | ||
|
||
public DefaultStoreNotInitializedException(String arg0, Throwable arg1) { | ||
super(arg0, arg1); | ||
} | ||
|
||
public DefaultStoreNotInitializedException(String arg0, Throwable arg1, boolean arg2, | ||
boolean arg3) { | ||
super(arg0, arg1, arg2, arg3); | ||
} | ||
|
||
} |