001/* 002 * Forge Mod Loader 003 * Copyright (c) 2012-2013 cpw. 004 * All rights reserved. This program and the accompanying materials 005 * are made available under the terms of the GNU Lesser Public License v2.1 006 * which accompanies this distribution, and is available at 007 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 008 * 009 * Contributors: 010 * cpw - implementation 011 */ 012 013package cpw.mods.fml.common; 014 015import java.util.Set; 016 017import com.google.common.collect.Sets.SetView; 018 019import cpw.mods.fml.common.versioning.ArtifactVersion; 020 021public class MissingModsException extends RuntimeException 022{ 023 024 public Set<ArtifactVersion> missingMods; 025 026 public MissingModsException(Set<ArtifactVersion> missingMods) 027 { 028 this.missingMods = missingMods; 029 } 030}