mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Changed the messages of DebugException.
This commit is contained in:
parent
0716864d27
commit
cc5b67b567
2 changed files with 12 additions and 12 deletions
|
@ -423,7 +423,7 @@ public class CDebugTarget extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred while terminating.", new String[]{ e.toString() } ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -490,7 +490,7 @@ public class CDebugTarget extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred resuming target.", new String[] { e.toString() } ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -507,7 +507,7 @@ public class CDebugTarget extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred suspending target.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -689,7 +689,7 @@ public class CDebugTarget extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} ocurred disconnecting from target.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -895,7 +895,7 @@ public class CDebugTarget extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} ocurred restarting the target.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -464,7 +464,7 @@ public class CThread extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred resuming thread.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -483,7 +483,7 @@ public class CThread extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred suspending thread.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -551,7 +551,7 @@ public class CThread extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred stepping in thread.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -568,7 +568,7 @@ public class CThread extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred stepping in thread.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -585,7 +585,7 @@ public class CThread extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred stepping in thread.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -758,7 +758,7 @@ public class CThread extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred stepping in thread.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -775,7 +775,7 @@ public class CThread extends CDebugElement
|
|||
}
|
||||
catch( CDIException e )
|
||||
{
|
||||
targetRequestFailed( MessageFormat.format( "{0} occurred stepping in thread.", new String[] { e.toString()} ), e );
|
||||
targetRequestFailed( e.toString(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue