1 14 15 package com.sun.facelets.tag; 16 17 import com.sun.facelets.FaceletException; 18 19 25 public final class TagException extends FaceletException { 26 27 30 private static final long serialVersionUID = 1L; 31 32 35 public TagException(Tag tag) { 36 super(tag.toString()); 37 } 38 39 42 public TagException(Tag tag, String message) { 43 super(tag + " " + message); 44 } 45 46 49 public TagException(Tag tag, Throwable cause) { 50 super(tag.toString(), cause); 51 } 52 53 57 public TagException(Tag tag, String message, Throwable cause) { 58 super(tag + " " + message, cause); 59 } 60 61 } 62 | Popular Tags |