Example #1
0
 public StyleSheetImportError(StyleSheetImportErrorType error, StyleSheetImportErrorCode code, string assetPath, string message, int line = -1, bool isWarning = false)
 {
     this.error     = error;
     this.code      = code;
     this.assetPath = assetPath;
     this.message   = message;
     this.line      = line;
     this.isWarning = isWarning;
 }
Example #2
0
 public Error(StyleSheetImportErrorType error, StyleSheetImportErrorCode code, string context)
 {
     this.error   = error;
     this.code    = code;
     this.context = context;
 }