Class MediaRecorderException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
one.jpro.platform.media.recorder.MediaRecorderException
All Implemented Interfaces:
Serializable

public class MediaRecorderException extends RuntimeException
Media recorder exception.
Author:
Besmir Beqiri
See Also:
  • Constructor Details

    • MediaRecorderException

      public MediaRecorderException(String message, Throwable cause)
      Create an MediaRecorderException with the given message and cause.
      Parameters:
      message - the error message
      cause - a Throwable object
    • MediaRecorderException

      public MediaRecorderException(String code, String message)
      Create an MediaRecorderException with the given error type and message.
      Parameters:
      code - the error code
      message - the error message
    • MediaRecorderException

      public MediaRecorderException(String code, String message, Throwable cause)
      Create an MediaRecorderException with the given error type, message and cause.
      Parameters:
      code - the error code
      message - the error message
      cause - a Throwable object
  • Method Details