Source code: ledestin/swing/ChildNodeCreationException.java
1 /*
2 * Copyright (C) 2000-2001 Dmitry Macsema. All Rights Reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted under the terms of the following
6 * Open Source license:
7 *
8 * The GNU General Public License, version 2, or any later version, as
9 * published by the Free Software Foundation
10 * (http://www.fsf.org/copyleft/gpl.html);
11 */
12 package ledestin.swing;
13
14 public class ChildNodeCreationException extends InstantiationException {
15 public ChildNodeCreationException() {}
16 public ChildNodeCreationException(String msg) {
17 super(msg);
18 }
19 }