From 1d3e8247e83caec5df33a547bb72195f52e03d72 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Sat, 9 Aug 2003 00:31:27 +0000 Subject: [PATCH] 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 --- .../com/threerings/resource/PatchException.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/java/com/threerings/resource/PatchException.java diff --git a/src/java/com/threerings/resource/PatchException.java b/src/java/com/threerings/resource/PatchException.java new file mode 100644 index 000000000..e443c4fe0 --- /dev/null +++ b/src/java/com/threerings/resource/PatchException.java @@ -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); + } +}