Search Tips

Opinions

  • U.S. Supreme Court opinions: June 27

    The United States Supreme Court has issued opinions in a case involving warrantless blood tests of unconscious drivers, a case on partisan gerrymandering and a case on census questions.
  • U.S. Supreme Court opinions: June 26

    The United States Supreme Court has issued opinions in a case on the right to trial by jury, a case on court deference to an agency's interpretation of its regulations, and a Commerce Clause case involving a state liquor law.
  • U.S. Supreme Court opinions: June 24

    The United States Supreme Court has issued opinions in a case on the definition of "violent felony," a case on the confidentiality of food stamp information, a case involving registration of "immoral or scandalous" trademarks, and a maritime law case on punitive damages.
  • U.S. Supreme Court opinions: June 21

    The United States Supreme Court has issued opinions in a case on race-based peremptory juror challenges, a case on state taxation of trust income, a case on what must be proved to establish illegal firearms possession, and a takings clause case involving a private cemetery.
  • U.S. Supreme Court opinions: June 20

    The United States Supreme Court has issued opinions in a sex offender registration case, a civil rights case addressing a limitations period issue, an Establishment Clause case involving a war memorial cross, and a case on what constitutes an "unsolicited advertisement."
  • U.S. Supreme Court opinions: June 3

    The United States Supreme Court has issued opinions in a Medicare payments case, a bankruptcy case involving creditor contempt, a case on filing requirements in civil rights matters, and a criminal case addressing credit for time served issues.
  • U.S. Supreme Court opinions: May 28

    The United States Supreme Court has issued opinions in a case on judicial review of Social Security decisions, a debt collection class action case, and a civil rights case involving a retaliatory arrest claim.
  • U.S. Supreme Court opinions: May 20

    The United States Supreme Court has issued opinions in a bankruptcy case involving the use of trademarks, a case on whether the Crow Tribe’s hunting rights under an 1868 treaty expired when Wyoming became a state, and a case on drug warnings.
  • U.S. Supreme Court opinions: May 13

    The United States Supreme Court has issued opinions in a case involving the aftermarket for iPhone applications, a case on state sovereign immunity and a case on the applicability of statutes of limitation in False Claims Act matters.
  • U.S. Supreme Court opinions: March 26

    The United States Supreme Court has issued opinions in a case involving operation of a hovercraft in an Alaska national park and in a Foreign Sovereign Immunities Act case stemming from the bombing of the U.S. Navy ship Cole.
  • U.S. Supreme Court opinions: March 20

    The United States Supreme Court has issued opinions in a case on whether a law firm conducting a foreclosure is a "debt collector" under the Fair Debt Collection Practices Act and a case stemming from a lawsuit against Google for alleged violations of the Stored Communications Act.
  • U.S. Supreme Court opinions: March 19

    The United States Supreme Court has issued opinions in a case involving asbestos used on Navy ships, a case on the detention of deportable aliens, and a case on state taxation of fuel sold on an Indian reservation.
  • U.S. Supreme Court opinions: Feb. 20

    The United States Supreme Court has issued opinions in a case involving state taxation of federal pension benefits and in a case on whether the excessive fines clause of the Eighth Amendment applies to civil forfeitures by states.

 


Runtime Error

Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>