Beispiel #1
0
 public MemberExceptionBase(string match, tagmodifier cfg)
 {
     nameRegex = new Regex(match, RegexOptions.Compiled);
     exclude   = cfg.exclude;
     if (null != cfg.alter)
     {
         alterActions.AddRange(AlterActionBase.Create(cfg.alter));
     }
 }
Beispiel #2
0
 public TagException(string pattern, tagmodifier cfg)
     : base(pattern.Replace("-", ""), cfg)
 {
 }
Beispiel #3
0
 public MemberException(string pattern, tagmodifier cfg)
     : base(pattern, cfg)
 {
 }
Beispiel #4
0
 public static MemberExceptionBase CreateTagException(tagmodifier m)
 {
     return(new TagException(m.match, m));
 }