org.nuiton.updater.UpdateNotFoundException Maven / Gradle / Ivy
package org.nuiton.updater;
/*
* #%L
* Nuiton Application Updater
* $Id: UpdateNotFoundException.java 2588 2013-07-20 14:25:42Z tchemit $
* $HeadURL: https://nuiton.org/svn/nuiton-updater/tags/nuiton-updater-3.0-alpha-2/src/main/java/org/nuiton/updater/UpdateNotFoundException.java $
* %%
* Copyright (C) 2013 CodeLutin, Tony Chemit
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import java.io.IOException;
/**
* When an update is not found.
*
* @author tchemit
* @since 2.6.11
*/
public class UpdateNotFoundException extends IOException {
private static final long serialVersionUID = 1L;
protected ApplicationInfo info;
public UpdateNotFoundException(ApplicationInfo info) {
this.info = info;
}
public ApplicationInfo getInfo() {
return info;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy