package com.sonymusic.dx.dxuiservice.exception;

/**
 * Authorization exception.
 */
public class AuthorizationException extends Exception {

    /**
     * Constructs a new authorization exception with the specified detail message.
     *
     * @param message the detail message.
     */
    public AuthorizationException(String message) {
        super(message);
    }
}
