answersLogoWhite

0

The Dangerous placard

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Write the 3 user defined exception in java?

1. Arithmetic Exception 2. Input Output Exception 3. Number Format Exception


What is user exceptions?

user defined exception is created by user such as arthmetic,number format exception ...


Can userdefined exception have two methods in it?

Yes a user defined exception can have any number of methods in it. A user defined exception is nothing but a Java class created for a specific purpose. Just like ordinary Java classes, you can have any number of methods in it...


What is mapping exception in c plus plus?

There is no such exception in C++. It's probably a 3rd party or user-defined exception. Examine the call-stack to determine where the exception was caught -- that should help you determine where the exception was thrown.


Can a class extend exception?

Yes You can. The features of such a class would be similar to what an Exception would have but not exactly as a predefined Java Exception. When you create a user defined exception you extend the java.lang.Exception class which in turn extends the java.lang.Throwable so indirectly you are extending the Throwable class while creating a user defined exception...


What are common types of user defined exceptions?

There are no common types of user-defined exceptions. If they were common, they'd already be provided as standard. The whole point of a user-defined exception is to differentiate between the common and the uncommon. For common exceptions such as range errors we can simply throw a std::range_error; we don't need a user-defined exception unless we need to throw additional information that cannot easily be provided by the standard library exception.


Who is responsible for providing a motor carrier with the proper placarding for the outside of a truck carrying hazardous materials?

The shipper is responsible for providing a motor carrier with the proper placarding for the outside of a truck carrying regulated hazardous materials in commerce in the US.


What part of the 49CFR difines hazard placarding requirements?

49 CFR, Part 172.500


How user defined exceptions in c sharp works?

It works the same way as the ones in System.Exception:To make an exception happen, use the keyword throw, followed by an instance of an Exception (or an object from a derived Exception. A user defined exceptions of course is a derived exception)Exception anException = new WowException(); //or new Exception("Wow");throw anException;The catcher can specifically catch the exception being thrown, or generally as catch-all:try {MakeMyDay();} catch (MyOMyException e) {//do something about e}catch (Exception e) { //do something about e}void MakeMyDay() {//some code, and encounter some special casesthrow new MyOMyException();}public class MyOMyException : SystemException //I prefer SystemException. ApplicationException will do as well, but not Exception{ public MyOMyException() : base("My-Oh-My, what you've done?!"){}}


What section of the 49 CFR defines hazard placarding requirements?

49 CFR, Section 172.500


Will the placards on a mil van container loaded onto a vehicle meet the requirement for placarding a vehicle?

No, the placards on a military van container do not meet the requirement for placarding a vehicle. The vehicle itself must be appropriately placarded according to the hazardous materials regulations, which include displaying the correct placards based on the type and quantity of hazardous materials being transported. Simply having placards on the container is insufficient for compliance with vehicle placarding requirements.


Why would you want to use user defined exception handling?

sometimes there are situations where the program is vary long which can make error debugging a long process so java provides a facility to make user defined exception handling suppose we are dividing two numbers a/b and if the user enters the value of b 0, the user wants to display an error of your own so the user can do this by using exception handling