Skip to main content

Privilege vs Corruption and the Verdict of "Not Proven"

P. V. Narasimha Rao became the Prime Minister of India in 1991 shortly after the assassination of Rajiv Gandhi during the election campaign. He inducted Dr. Manmohan Singh, the then former governor of the Reserve Bank of India and former deputy chairman of the Planning Commission as the Finance Minister in the new cabinet. They spearheaded the 1991 economic reforms and liberalization which opened up the economy for foreign investments and ended the license permit raj. Crucially, it triggered the Indian economy to grow at a much faster pace than the embarrassing 3.5% Hindu rate of growth as some would mockingly term it.

While Mr. Rao needs to be remembered for this pivotal moment in the short history of Independent India, there is another incident that happened at the fag end of his political career which is the topic of interest of this article. There was a case of corruption filed against Mr. Rao in 1996 after the completion of the term of the government. There are two interesting legal aspects related to the case. However, before moving ahead, a little background.

Narasimha Rao government was governing with a thin majority in the parliament with the support of the Left parties. These parties were not in support of the 1991 economic reforms, naturally because the reforms brought in some capitalistic aspects of economic management and took India away from the path of socialism. So these communist parties withdrew their support to the government and moved a "No-confidence motion" against the government in the parliament in 1993. The government survived the vote and went on to complete its five year term. But after the completion of the term, in 1996, a complaint was filed with the Central Bureau of Investigation (CBI) about possible corruption right before the 1993 trust vote. It was alleged that certain Members of Parliament (MPs) were bribed to vote in favour of the government during the no-confidence motion. Mr. Rao as the head of the government became the primary accused.

The first legal argument that was used as a defence from the the side of Mr. Rao was of "Parliamentary Privilege". This concept has been borrowed from the British parliament. It states that the MPs have immunity and cannot be tried in court for any statements or votes in the parliament. This is to ensure that the MPs can express their opinions openly and vote freely without the possibility of prosecution in courts looming over their head. This was used by Mr. Rao to argue that the trust vote comes under voting privilege and a case cannot be filed about anything related to it. The Supreme Court of India (SC) did not agree with this argument. It stated that the privilege only applies to speeches and votes given in the houses of the parliament, If the bribe is paid before the vote, outside of the parliament, then it is an offense in itself without the protection of parliamentary privilege. A crime that has probably been committed cannot be ignored merely because it is related to an action that is protected under the parliamentary privilege. It similarly rejected some other arguments put up by the defendants and paved the way for the first ever trial of a former Prime Minister for corruption.

Mr. Rao was granted bail on the initial charges by a special CBI court in 1996. In 2000, the trial court convicted him for corruption but in 2002, the Delhi High Court overturned the conviction. The statements of the key witnesses were found to be contradictory and conflicting which resulted in his acquittal due to "lack of evidence". The High Court gave a verdict of non-guilty.

But the reason "lack of evidence" brings forth the second legal aspect related to this case. In Scotland, under Scots law, there can be three possible verdicts: "guilty", "not guilty" and "not proven" [1]. The "not proven" verdict still means acquittal and the person cannot be tried again. There is a procedural defence commonly know as "Double Jeopardy" [2], that prevents an accused from being tried again on the same charges with same evidence following a valid verdict. In the Indian context [3], the double jeopardy protection is given for valid convictions by the Constitution. While the Criminal Procedure Code (CrPC) gives protection to re-trial of valid acquittals with certain caveats in case of discovery of new evidence. This reminds me of the case of Arnab Goswami vs The State of Maharashtra. Mr. Goswami was arrested in 2020 on the charges of abetment to suicide. The original case was of 2018 in which the Police had initially filed an "A-summary" report in 2019 after investigation. The case was supposedly "re-opened" and Mr. Goswami was arrested. While the details of the case are out of the scope of this post, there are parallels between the "A-summary" report and the "not proven" verdict. The Bombay police manual 1959 describes the A-summary report as the final report filed in the case when culprits are unknown or there is insufficient evidence against the accused for a trial in a magistrate's court [4]. This effectively means that the charges can "not be proven". So a provision similar to the "not proven" verdict exists in the Indian law enforcement system as well and with similar exceptions that the case can be reopened if new evidence is found in the case but not otherwise.

 

References:

[1] https://berlowrahman.scot/the-not-proven-verdict-in-scotland/

[2] http://www.legalserviceindia.com/legal/article-60-double-jeopardy.html

[3] https://blog.ipleaders.in/understanding-autrefois-acquit-autrefois-convict/

[4] https://lawgic.info/what-is-an-a-summary-b-summary-and-c-summary-report-filed-in-a-criminal-case/

Comments

Popular posts from this blog

Using static IPs in Linux

It is often a requirement to assign static IP addresses to some important and permanent network interfaces. This is to avoid setting up a local DHCP server or relying on IP given by your network provider which may not be stable. This post shows steps to configure static IPs in Linux using Ubuntu 16.04 and Ubuntu 18.04 distros. We are considering two distros as network configuration has changed significantly in Ubuntu 18.04. There are two general steps to be followed: 1. Configure the network interface and assign a static IP. 2. Restart interface for the changes to take effect. Ubuntu 16.04  The current interfaces on the system are as follows: As can be seen, enp0s8 interface does not have any IP. Let's assign a static IP to it. In case you already have an interface with a DHCP assigned IP, you just need to change that IP and make it static. Edit the /etc/network/interfaces file and add the following code block. Prefer using the IP address range available for pri...

Simple HTTP Server in Python

Have you ever come across a need to share a file over a local network to a number of machines? Have you ever felt the need to share output of a task in text files available at a web-endpoint? Often, there is a requirement to quickly setup a light-weight web-server for such requirements. Python provides the easiest way to setup a simple HTTP server for such use cases with a single command. Python comes pre-installed with Linux as many of the linux libraries use python in background. Therefore there is no extra overhead of installing python. With support for python2 getting stopped in April 2020, many of the newer versions of linux distros come with default python3. Therefore this post will focus on setting up an HTTP server using both python2 and python3. We will be using Ubuntu 16.04, however it will work for majority of the linux systems where python comes pre-installed. Preparation Steps to follow before starting the server: Make sure you are in the directory which you want ...

Local domain name resolution using /etc/hosts

The /etc/hosts file is a powerful mechanism for managing the information about hosts in the local network in the absence of a local DNS server. Setup We have 4 VMs in the local /24 network. The following are the details: vm-1-ubuntu-16-04 - 10.0.1.11 vm-2-ubuntu-16-04 - 10.0.1.12 vm-1-ubuntu-18-04 - 10.0.1.21 vm-2-ubuntu-18-04 - 10.0.1.22 The VMs are reachable via their IP address but not by their hostnames. This is problematic because we have to remember their IP addresses everytime we want to access these hosts. It is would be much simpler to remember and access the servers by their hostnames. For that we need some sort of mapping between the IP addresses and their corresponding host names. There are 3 common ways of achieving this mapping. Setup a DNS server which handles resolution for your local network. Use an existing DNS server of the local Internet Service Provider (ISP) or any other higher level ISP. Note that a public static IP address is required for this s...