com.pekinsoft.spi.Exceptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ServiceProviders Show documentation
Show all versions of ServiceProviders Show documentation
An API that allows for dynamic application features and loose coupling.
The newest version!
/*
* Copyright (C) 2023 PekinSOFT Systems
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
* *****************************************************************************
* Project : ServiceProviders
* Class : Exceptions.java
* Author : Sean Carrick
* Created : Jan 27, 2023
* Modified : Jan 27, 2023
*
* Purpose: See class JavaDoc for explanation
*
* Revision History:
*
* WHEN BY REASON
* ------------ ------------------- -----------------------------------------
* Jan 27, 2023 Sean Carrick Initial creation.
* *****************************************************************************
*/
package com.pekinsoft.spi;
/**
* The {@code Exceptions} ...
*
* @author Sean Carrick [sean at pekinsoft dot com]
* - Copyright Notice
* - Copyright© 2006-2023 Sean Carrick. All rights under copyright reserved
*
Released under the terms of the [NO LICENSE PROVIDED].
*
* @version 1.0
* @since 1.0
*/
public interface Exceptions {
void handle(Throwable thrown);
void handle(Throwable thrown, String xtraInfo);
}