00001 using System; 00002 using System.Collections.Generic; 00003 using System.Text; 00004 00005 namespace DXGfxLib 00006 { 00011 public class EffectException : Exception 00012 { 00016 public string effectValidationError = "No output!"; 00017 00021 public string effectFileName = ""; 00022 00031 public EffectException(string message, string fileName, string strErr, Exception innerException) 00032 : base(message, innerException) 00033 { 00034 effectFileName = fileName; 00035 effectValidationError = strErr; 00036 } 00037 } 00038 }
1.5.8