import java.util.UUID;

public class JI9058876 {
	public static void main(String[] args) throws Exception{ 
		String input="5-4-3-DEADBEEF0002-9000000001"; 
		System.out.println("Calling UUID.fromString with input: "+input); 
		try{ 
			UUID uuid=UUID.fromString(input); 
			throw new Exception("Expected IllegalArgumentException exception but got: "+uuid ); 
		}catch(IllegalArgumentException e){ 
			System.out.println("OK: caught exception: "+e); 
		} 
	} 
}
