Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/14 20:12:56 (10 years ago)
Author:
mkommend
Message:

#2082: Updated copyright and used Environment.NewLine instead of \r\n.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Scilab/3.3/ScilabParameterVectorEvaluator.cs

    r10094 r10594  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    130130      string errorMessage = DotNetScilab.Scilab.Instance.readNamedMatrixOfString("errorMsg")[0];
    131131
    132       string message = string.Format("The error {1} occured during the execution of the Scilab script {0}. \r\n\r\n {2}", fileName, errorCode, errorMessage);
     132      string message = string.Format("The error {1} occured during the execution of the Scilab script {0}. "
     133        + Environment.NewLine + Environment.NewLine + " {2}", fileName, errorCode, errorMessage);
    133134      throw new InvalidOperationException(message);
    134135    }
Note: See TracChangeset for help on using the changeset viewer.