/////////////////////////////////////////////////////////////////////////////
        public static ErrorItemBase Split( string filePathIn, string errStrIn )
        {
            var errorItem = new ErrorItemBase {
                FileName = filePathIn,
                ErrorText = errStrIn
            };

            return errorItem;
        }
Esempio n. 2
0
		public VsError( ErrorItemBase error )
		{
			Error = error;
			MsgType = VsErrorMsgType.Error;
		}