Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/core/Server/src/org/litesoft/testplan/TestPlanParser.java

Diff revisions: vs.
  @@ -221,8 +221,7 @@
221 221 }
222 222 if ( zFactory == null )
223 223 {
224 - throw new XML_RuntimeException(
225 - "Unknown Action Tag in Step " + pStepNumber + ", of: " + zTagName + " | " + pTestPlanFilePath + " using: " + zClassName, zError );
224 + throw new XML_RuntimeException( "Unknown Action Tag in Step " + pStepNumber + ", of: " + zTagName + " | " + pTestPlanFilePath + " using: " + zClassName, zError );
226 225 }
227 226 mFactories.put( zTagName, zFactory );
228 227 try
  @@ -231,8 +230,7 @@
231 230 }
232 231 catch ( RuntimeException e )
233 232 {
234 - throw new XML_RuntimeException(
235 - "Unable to parse Action Tag in Step " + pStepNumber + ", of: " + zTagName + " | " + pTestPlanFilePath + " using: " + zClassName, e );
233 + throw new XML_RuntimeException( "Unable to parse Action Tag in Step " + pStepNumber + ", of: " + zTagName + " | " + pTestPlanFilePath + " using: " + zClassName, e );
236 234 }
237 235 }
238 236 }