org.spdx.spdx_to_osv.InvalidExternalRefPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spdx-to-osv Show documentation
Show all versions of spdx-to-osv Show documentation
Produces an OSV vulnerability JSON report from an SPDX file
/**
* SPDX-License-Identifier: Apache-2.0
* Copyright (c) 2021 Source Auditor Inc.
*/
package org.spdx.spdx_to_osv;
/**
* @author Gary O'Neall
*
*/
public class InvalidExternalRefPattern extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
*
*/
public InvalidExternalRefPattern() {
}
/**
* @param arg0
*/
public InvalidExternalRefPattern(String arg0) {
super(arg0);
}
/**
* @param arg0
*/
public InvalidExternalRefPattern(Throwable arg0) {
super(arg0);
}
/**
* @param arg0
* @param arg1
*/
public InvalidExternalRefPattern(String arg0, Throwable arg1) {
super(arg0, arg1);
}
/**
* @param arg0
* @param arg1
* @param arg2
* @param arg3
*/
public InvalidExternalRefPattern(String arg0, Throwable arg1, boolean arg2, boolean arg3) {
super(arg0, arg1, arg2, arg3);
}
}