Skip to content

Commit 3348b56

Browse files
Alex Huangroot
authored andcommitted
Successful creation of domr and uservm with all programming done correctly.....yahooo
1 parent 6311644 commit 3348b56

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/**
2+
* Copyright (C) 2010 Cloud.com, Inc. All rights reserved.
3+
*
4+
* This software is licensed under the GNU General Public License v3 or later.
5+
*
6+
* It is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or any later version.
9+
* This program is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
*/
18+
package com.cloud.exception;
19+
20+
import com.cloud.utils.SerialVersionUID;
21+
22+
public class InsufficientNetworkCapacityException extends InsufficientCapacityException {
23+
private static final long serialVersionUID = SerialVersionUID.InsufficientAddressCapacityException;
24+
25+
protected InsufficientNetworkCapacityException() {
26+
super();
27+
}
28+
29+
public InsufficientNetworkCapacityException(String msg) {
30+
super(msg);
31+
}
32+
}

0 commit comments

Comments
 (0)