/**
 * This class can take a variable number of parameters on the command
 * line. Program execution begins with the main() method. The class
 * constructor is not invoked unless an object of type 'Class1'
 * created in the main() method.{}
 */

package Project1;

import java.lang.Thread;
import COM.meitca.concordia.*;
import java.io.*;

public class Pause extends Thread 
{
	public void run (){
		try{
			System.out.println("Pause start...\n");
			sleep(30000);
			System.out.println("Pause stop...\n");
		} catch (Exception e) {
			System.err.println(e.getMessage());
			e.printStackTrace();
		}

	}
}
