Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/15/15 16:39:12 (8 years ago)
Author:
gkronber
Message:

#2069: reviewing and minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Void Methods/Back.cs

    r13011 r13013  
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2828
    29 namespace HeuristicLab.Problems.GeneticProgramming.RoboCode {
     29namespace HeuristicLab.Problems.GeneticProgramming.Robocode {
    3030  [StorableClass]
    3131  public class Back : CodeNode {
     
    6060      var symbol = exprTree.Symbol;
    6161      if (!(symbol is NumericalExpression))
    62         throw new Exception("Back was given a child of type " + symbol.GetType() +
    63             ". The expected child must be of type " + typeof(NumericalExpression) + ".");
     62        throw new InvalidProgramException("Back was given a child of type " + symbol.GetType() +
     63            ". The expected child must be of type NumericalExpression.");
    6464
    6565      string result = ((CodeNode)symbol).Interpret(exprTree, exprTree.Subtrees);
Note: See TracChangeset for help on using the changeset viewer.