Actually commit the Exception's file
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/281f25ca Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/281f25ca Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/281f25ca Branch: refs/heads/qemu-img Commit: 281f25ca8bcc8dfdd3509f61023e175f481fd923 Parents: ac25cfb Author: Wido den Hollander <[email protected]> Authored: Mon Feb 25 15:05:57 2013 +0100 Committer: Wido den Hollander <[email protected]> Committed: Mon Feb 25 15:05:57 2013 +0100 ---------------------------------------------------------------------- .../cloudstack/utils/qemu/QemuImgException.java | 25 +++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/281f25ca/utils/src/org/apache/cloudstack/utils/qemu/QemuImgException.java ---------------------------------------------------------------------- diff --git a/utils/src/org/apache/cloudstack/utils/qemu/QemuImgException.java b/utils/src/org/apache/cloudstack/utils/qemu/QemuImgException.java new file mode 100644 index 0000000..082ebe4 --- /dev/null +++ b/utils/src/org/apache/cloudstack/utils/qemu/QemuImgException.java @@ -0,0 +1,25 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +package org.apache.cloudstack.utils.qemu; + +public class QemuImgException extends Exception { + + public QemuImgException(String message) { + super(message); + } + +} \ No newline at end of file
