001 package railo.runtime.exp; 002 003 public class TagNotSupported extends ApplicationException { 004 005 public TagNotSupported(String tag) { 006 super("tag "+tag+" is not supported"); 007 } 008 009 }