Ignore:
Timestamp:
08/22/08 14:42:58 (16 years ago)
Author:
ra33
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/simple/Primitives.java

    r202 r270  
    3232                        v.setValue(newValue);
    3333                } catch (Exception e) {
    34                         // If the first variable doesnt exist then add it
    35                         add(variableName, newValue);
     34                        try{
     35                                add(variableName, newValue);
     36                        }catch(IncorrectTypeException ite){
     37                                throw ite;
     38                        }catch(Exception ex){
     39                                //DO NOTHING... THIS SHOULD NOT HAPPEN
     40                                //But the ANT builder is complaining
     41                                ex.printStackTrace();
     42                        }
    3643                }
    3744        }
Note: See TracChangeset for help on using the changeset viewer.