org.sonar.ide.api
Class SonarIdeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.sonar.ide.api.SonarIdeException
All Implemented Interfaces:
Serializable

public class SonarIdeException
extends RuntimeException

Runtime exception. Good practice is to always specify detail message for exception, so there is no constructors without parameter "message".

See Also:
Serialized Form

Constructor Summary
SonarIdeException(String message)
          Constructs a new runtime exception with the specified detail message.
SonarIdeException(String message, Throwable cause)
          Constructs a new runtime exception with the specified detail message and cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SonarIdeException

public SonarIdeException(String message)
Constructs a new runtime exception with the specified detail message.

Parameters:
message - the detail message

SonarIdeException

public SonarIdeException(String message,
                         Throwable cause)
Constructs a new runtime exception with the specified detail message and cause.

Parameters:
message - the detail message
cause - the cause


Copyright © 2010 Evgeny Mandrikov. All Rights Reserved.