Throw a particular exception when we fail to patch bundles.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2757 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-08-09 00:31:27 +00:00
parent b9341c9430
commit 1d3e8247e8
@@ -0,0 +1,17 @@
//
// $Id: PatchException.java,v 1.1 2003/08/09 00:31:27 mdb Exp $
package com.threerings.resource;
import java.io.IOException;
/**
* An exception thrown when we fail to patch one or more updated files.
*/
public class PatchException extends IOException
{
public PatchException (String msg)
{
super(msg);
}
}