1 23 24 package com.sun.enterprise.tools.guiframework.view; 25 26 import com.iplanet.jato.view.View; 27 28 import com.sun.enterprise.tools.guiframework.exception.FrameworkException; 29 import com.sun.enterprise.tools.guiframework.view.descriptors.ViewDescriptor; 30 31 32 35 public class ChildNullException extends FrameworkException { 36 37 40 public ChildNullException() { 41 super(); 42 } 43 44 45 48 public ChildNullException(ViewDescriptor viewDesc, View view) { 49 super(viewDesc, view); 50 } 51 52 53 56 public ChildNullException(Throwable ex) { 57 super(ex); 58 } 59 60 61 64 public ChildNullException(Throwable ex, ViewDescriptor viewDesc, View view) { 65 super(ex, viewDesc, view); 66 } 67 68 69 72 public ChildNullException(String childName) { 73 super("Child '"+childName+"' is null."); 74 } 75 76 77 80 public ChildNullException(String childName, ViewDescriptor viewDesc, View view) { 81 super("Child '"+childName+"' is null.", viewDesc, view); 82 } 83 84 85 88 public ChildNullException(String childName, Throwable ex) { 89 super("Child '"+childName+"' is null.", ex); 90 } 91 92 93 96 public ChildNullException(String childName, Throwable ex, ViewDescriptor viewDesc, View view) { 97 super("Child '"+childName+"' is null.", ex, viewDesc, view); 98 } 99 } 100 | Popular Tags |