Write a Python program that reads a JSON file and prints its contents. The program should handle exceptions for scenarios like file not found, improper JSON format, etc.
Example 1:
Input: "correct_file.json"
Output: { "name": "John", "age": 30, "city": "New York" }
Example 2:
Input: "incorrect_file.json"
Output: "Exception: File not found"