All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.threatconnect.sdk.parser.service.save.DeleteItemFailedException Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package com.threatconnect.sdk.parser.service.save;

/**
 * Represents when the main item failed to delete
 * 
 * @author Greg Marut
 */
public class DeleteItemFailedException extends Exception
{
	private static final long serialVersionUID = 1L;
	
	public DeleteItemFailedException(final String message)
	{
		super(message);
	}
	
	public DeleteItemFailedException(final Exception cause)
	{
		super(cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy